From 66816f77141a30ee65699923a4f1f3871adbef42 Mon Sep 17 00:00:00 2001 From: Benjamin Leonard Date: Thu, 7 Mar 2024 10:35:50 +0000 Subject: [PATCH] Fix broken ladle paths --- .ladle/components.tsx | 2 +- .ladle/config.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ladle/components.tsx b/.ladle/components.tsx index 3cc3d1f689..699c4e8b78 100644 --- a/.ladle/components.tsx +++ b/.ladle/components.tsx @@ -2,7 +2,7 @@ import type { GlobalProvider } from '@ladle/react' import React from 'react' import { StaticRouter } from 'react-router-dom/server' -import '../libs/ui/styles/index.css' +import '../app/ui/styles/index.css' export const Provider: GlobalProvider = ({ children }) => ( // make things with RR links work diff --git a/.ladle/config.mjs b/.ladle/config.mjs index c8dd101def..8cc2b7511f 100644 --- a/.ladle/config.mjs +++ b/.ladle/config.mjs @@ -1,3 +1,3 @@ export default { - stories: 'libs/ui/**/*.stories.{js,jsx,ts,tsx}', + stories: 'app/ui/lib/**/*.stories.{js,jsx,ts,tsx}', }