Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
BuyankhuuTsCAl committed Apr 21, 2024
1 parent a7fe762 commit d0e5b51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/supabase/queries/user_queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function fetchUser(): Promise<User> {
throw new Error(`Session is null`);
}

const user = session.user;
const {user} = session;

if (user !== null) {
const { data, error: error1 } = await supabase
Expand Down
2 changes: 1 addition & 1 deletion src/app/orderHistory/styles.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// styles.ts (for styled-components)
import styled from 'styled-components';
import COLORS from '@/styles/colors';
import NavBar from '../../components/NavBarFolder/NavBar';

import Footer from '../../components/FooterFolder/Footer';
import COLORS from '@/styles/colors';

export const FooterMoved = styled(Footer)`
left: 0;
Expand Down

0 comments on commit d0e5b51

Please sign in to comment.