Skip to content

Commit

Permalink
fix public imports (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyOooh authored Jun 4, 2023
1 parent 7ae6ef0 commit 52f4c87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/app/src/components/AuthCard/AuthCardUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import React from 'react';

import chomPortait from '../../../public/talent/chom_white_12_17.jpg';
import chomPortait from '/public/talent/chom_white_12_17.jpg';
import Image from 'next/image';
import { useAuthState } from 'react-firebase-hooks/auth';
import { auth } from '../../firebase/clientApp';
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
BiCog,
} from 'react-icons/bi';
import Image from 'next/image';
import combi_mint from '../../../public/logo/combi/combi_mint.png';
import combi_mint from '/public/logo/combi/combi_mint.png';
import Link from 'next/link';

type Props = {};
Expand Down
4 changes: 2 additions & 2 deletions apps/app/src/components/modals/auth/OAuthButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import { ModalView } from '../../../atoms/authModalAtom';
import { auth } from '../../../firebase/clientApp';
import Image from 'next/image';
import facebookLogo from '/images/facebooklogo.png';
import googleLogo from '/images/googlelogo.png';
import facebookLogo from '/public/images/facebooklogo.png';
import googleLogo from '/public/images/googlelogo.png';
import { MouseEvent, MouseEventHandler, useEffect } from 'react';
import {
useSignInWithGoogle,
Expand Down

2 comments on commit 52f4c87

@vercel
Copy link

@vercel vercel bot commented on 52f4c87 Jun 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dev-event-dee2 – ./apps/app

dev-event-dee2-andyoooh.vercel.app
dev-event-dee2.vercel.app
dev-event-dee2-git-main-andyoooh.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 52f4c87 Jun 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

app-event-dee2 – ./apps/app

app-event-dee2.vercel.app
app-event-dee2-git-main-andyoooh.vercel.app
app-event-dee2-andyoooh.vercel.app

Please sign in to comment.