Skip to content

Commit a94ddd8

Browse files
committed
fixed broken image
1 parent 23c0e25 commit a94ddd8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

app/components/AddService.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useState, useContext, useEffect } from 'react';
2-
import logo from '../assets/logo2.png';
2+
// import logo from 'app/assets/logo2.png';
33
import SetupContext from '../context/SetupContext';
44
import ServicesDashboard from './ServicesDashboard.jsx';
55

@@ -31,14 +31,14 @@ const AddService = () => {
3131

3232
return (
3333
<div className="mainContainer">
34-
<img src={logo} alt="logo" />
34+
<img src="app/assets/logo2.png" alt="logo" />
3535
<h2 className="signUpHeader">Enter Your Database Information</h2>
3636
<form>
3737
Database Type:
3838
<select id="dbType" onChange={() => setDbType(document.getElementById('dbType').value)}>
39-
<option value="SQL">SQL</option>
40-
<option value="MongoDB">MongoDB</option>
41-
</select>
39+
<option value="SQL">SQL</option>
40+
<option value="MongoDB">MongoDB</option>
41+
</select>
4242
Database URI:
4343
<input
4444
className="userInput"

0 commit comments

Comments
 (0)