Skip to content

Commit

Permalink
Fixed the wrapping issue with Layout
Browse files Browse the repository at this point in the history
  • Loading branch information
vipinpaul committed Nov 27, 2023
1 parent ccc5c15 commit 4819826
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion renderer/pages/profile.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import Profile from '@/modules/projects/Profile';
import AuthenticationContextProvider from '@/components/Login/AuthenticationContextProvider';
import ProjectContextProvider from '@/components/context/ProjectContext';

const profile = () => (
<AuthenticationContextProvider>
<Profile />
<ProjectContextProvider>
<Profile />
</ProjectContextProvider>
</AuthenticationContextProvider>
);

Expand Down

0 comments on commit 4819826

Please sign in to comment.