We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1834599 commit 0b438c2Copy full SHA for 0b438c2
src/layouts/Layout.tsx
@@ -1,5 +1,4 @@
1
import { Outlet } from 'react-router';
2
-import { twMerge } from 'tailwind-merge';
3
import PostButton from '@/components/PostButton';
4
import MyErrorBoundary from '@/components/ErrorBoundary';
5
import HeaderWrapper from '@/layouts/header/HeaderWrapper';
@@ -13,7 +12,7 @@ function Layout() {
13
12
<HeaderWrapper />
14
15
{/* 메인 컨텐츠 영역 */}
16
- <div className={twMerge('pt-[44px] flex-1 flex justify-center w-full px-3')}>
+ <div className="pt-[44px] flex-1 flex justify-center w-full px-3">
17
<MyErrorBoundary>
18
<AnimatePresence mode="wait">
19
<motion.div
0 commit comments