Skip to content

Commit da73c1a

Browse files
committed
Updated import statement and rendered element for Add Database to AddService.
1 parent a7de58e commit da73c1a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/ServicesDashboard.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState, useContext } from 'react';
22
import ServiceOverview from './ServiceOverview.jsx';
33
import DashboardContext from '../context/DashboardContext';
44
import SetupContext from '../context/SetupContext';
5-
import GettingStarted from './GettingStarted.jsx';
5+
import AddService from './AddService.jsx';
66

77
const ServicesDashboard = (props) => {
88
const setup = useContext(SetupContext);
@@ -44,7 +44,7 @@ const ServicesDashboard = (props) => {
4444
key="BackToStart"
4545
onClick={() => {
4646
setup.setupRequired = setup.toggleSetup(false);
47-
setSelection(<GettingStarted />);
47+
setSelection(<AddService />);
4848
}}
4949
>
5050
Add Database

0 commit comments

Comments
 (0)