diff --git a/apps/taxes/next.config.js b/apps/taxes/next.config.js index 2fa335c..dd29bb3 100644 --- a/apps/taxes/next.config.js +++ b/apps/taxes/next.config.js @@ -17,7 +17,7 @@ const config = { experimental: { esmExternals: true, }, - transpilePackages: ["@saleor/apps-shared", "@saleor/apps-ui"], + transpilePackages: ["@saleor/apps-shared"], }; module.exports = withSentryConfig( diff --git a/apps/taxes/package.json b/apps/taxes/package.json index 5b1d722..402213e 100644 --- a/apps/taxes/package.json +++ b/apps/taxes/package.json @@ -22,7 +22,6 @@ "@material-ui/lab": "4.0.0-alpha.61", "@saleor/app-sdk": "0.38.0", "@saleor/apps-shared": "workspace:*", - "@saleor/apps-ui": "workspace:*", "@saleor/macaw-ui": "^0.7.2", "@sentry/nextjs": "^7.45.0", "@tanstack/react-query": "^4.19.1", diff --git a/packages/ui/src/example.tsx b/packages/ui/src/example.tsx deleted file mode 100644 index b4026c6..0000000 --- a/packages/ui/src/example.tsx +++ /dev/null @@ -1,8 +0,0 @@ -import { Box } from "@saleor/macaw-ui/next"; -import { PropsWithChildren } from "react"; - -type ExampleProps = PropsWithChildren<{}>; - -export const Example = ({ children }: ExampleProps) => { - return {children}; -};