Skip to content

Commit

Permalink
fix: FE prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
huglx committed Jul 14, 2024
1 parent 383f2fe commit b0c680b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions webapp/src/views/RootView.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {EmailNotVerifiedView} from "tg.component/EmailNotVerifiedView";
import {useIsEmailVerified} from "tg.globalContext/helpers";
import {ProjectListView} from "tg.views/projects/ProjectListView";
import { EmailNotVerifiedView } from 'tg.component/EmailNotVerifiedView';
import { useIsEmailVerified } from 'tg.globalContext/helpers';
import { ProjectListView } from 'tg.views/projects/ProjectListView';

export const RootView = () => {
const isEmailVerified = useIsEmailVerified()
const isEmailVerified = useIsEmailVerified();

return isEmailVerified ? <ProjectListView/> : <EmailNotVerifiedView/>
}
return isEmailVerified ? <ProjectListView /> : <EmailNotVerifiedView />;
};

0 comments on commit b0c680b

Please sign in to comment.