Skip to content

Commit

Permalink
fixed error e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
uo289689 committed Apr 26, 2024
1 parent 884dcc2 commit 1e95303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Home = () => {
const { t } = useTranslation();
const {username} = useContext(SessionContext) || {};

const redirectPath = username == '' ? "/login" : "/homepage";
const redirectPath = username === '' ? "/login" : "/homepage";

const styles = {
logo:{
Expand Down

0 comments on commit 1e95303

Please sign in to comment.