File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const RootLayout = ({
28
28
return (
29
29
< html lang = 'ko' >
30
30
< head >
31
- < link rel = 'icon' href = '/icon-512x512.png' sizes = 'any' />
31
+ < link rel = 'icon' href = '/app-Icon/ icon-512x512.png' sizes = 'any' />
32
32
< GoogleAnalytics gaId = { process . env . NEXT_PUBLIC_MEASUREMENT_ID ! } />
33
33
</ head >
34
34
< body className = 'font-sans' >
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import Toast from '@/src/components/Toast';
6
6
7
7
export const useFollow = ( userId : string ) => {
8
8
const { userId : myId } = useGetUserStatusAPI ( ) ;
9
- const postFollow = usePostFollowAPI ( userId , myId . toString ( ) ) ;
10
- const deleteFollow = useDeleteFollowAPI ( userId , myId . toString ( ) ) ;
9
+ const postFollow = usePostFollowAPI ( userId , myId ? .toString ( ) ) ;
10
+ const deleteFollow = useDeleteFollowAPI ( userId , myId ? .toString ( ) ) ;
11
11
12
12
const { login : isLogin } = useGetUserStatusAPI ( ) ;
13
13
const router = useRouter ( ) ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const MoreItem = ({
37
37
children,
38
38
} : PropsWithChildren < MoreMenuItemProps > ) => {
39
39
return (
40
- < DropdownMenu . Item onSelect = { onSelect } >
40
+ < DropdownMenu . Item onSelect = { onSelect } className = 'cursor-pointer' >
41
41
{ children || label }
42
42
</ DropdownMenu . Item >
43
43
) ;
You can’t perform that action at this time.
0 commit comments