Skip to content

Commit ecfef5a

Browse files
authored
Merge pull request #287 from CodeForPhilly/281-replace-report-issue-button-with-gray-thumbs-down-icon-easy
Thumbs down icon added in place of bug and other adjustments
2 parents ff23fc8 + 657c39e commit ecfef5a

9 files changed

Lines changed: 1227 additions & 1113 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
config
22
config/env/env.dev
3+
.idea/

frontend/src/App.tsx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
import "./App.css";
2-
import { DarkModeProvider } from "./contexts/DarkModeContext";
2+
import {DarkModeProvider} from "./contexts/DarkModeContext";
33
import Layout from "./pages/Layout/Layout";
44
import PatientManager from "./pages/PatientManager/PatientManager";
5+
import {GlobalProvider} from "./contexts/GlobalContext.tsx";
56

67
const App = () => {
7-
return (
8-
<DarkModeProvider>
9-
<Layout>
10-
<PatientManager />
11-
</Layout>
12-
</DarkModeProvider>
13-
);
8+
return (
9+
<DarkModeProvider>
10+
<GlobalProvider>
11+
<Layout>
12+
<PatientManager/>
13+
</Layout>
14+
</GlobalProvider>
15+
</DarkModeProvider>
16+
);
1417
};
1518

1619
export default App;

0 commit comments

Comments
 (0)