Skip to content

Commit

Permalink
fix: 모바일에서 스크롤 발생하는 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
saseungmin committed Feb 14, 2024
1 parent 1f3bbc8 commit 72cbf10
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import { ReactNode, useState } from 'react';

import { useResizeViewportHeight } from '@nf-team/react';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';

Expand All @@ -15,6 +16,8 @@ function Providers({ children }: { children: ReactNode }) {
},
}));

useResizeViewportHeight();

return (
<QueryClientProvider client={queryClient}>
{children}
Expand Down

0 comments on commit 72cbf10

Please sign in to comment.