diff --git a/.github/workflows/nextjs_bundle_analysis.yml b/.github/workflows/nextjs_bundle_analysis.yml index 8eaa69bccf..a258a019a5 100644 --- a/.github/workflows/nextjs_bundle_analysis.yml +++ b/.github/workflows/nextjs_bundle_analysis.yml @@ -48,7 +48,8 @@ jobs: - name: Build next.js app # change this if your site requires a custom build command - run: ./node_modules/.bin/next build + run: ./node_modules/.bin/next build --webpack + # Here's the first place where next-bundle-analysis' own script is used # This step pulls the raw bundle stats for the current bundle diff --git a/src/components/ui/modal/stacked/constants.ts b/src/components/ui/modal/stacked/constants.ts index 1275b892de..19ae1b63e6 100644 --- a/src/components/ui/modal/stacked/constants.ts +++ b/src/components/ui/modal/stacked/constants.ts @@ -11,7 +11,7 @@ const initialStyle: TargetAndTransition = { opacity: 0, } -export const modalMontionConfig: MotionProps = { +export const modalMotionConfig: MotionProps = { initial: initialStyle, animate: enterStyle, exit: initialStyle,