Skip to content

Commit

Permalink
fix: cleaning up exports
Browse files Browse the repository at this point in the history
  • Loading branch information
N00nDay committed Sep 27, 2023
1 parent dd5d725 commit b38716e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions src/lib/enums/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import { UploadStatus } from './upload-status';

export { UploadStatus };
export { UploadStatus as UploadStatus } from './upload-status';
6 changes: 2 additions & 4 deletions src/lib/stores/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
import theme from './theme';
import breakpoints from './breakpoints';

export { theme, breakpoints };
export { default as theme } from './theme';
export { default as breakpoints } from './breakpoints';

1 comment on commit b38716e

@vercel
Copy link

@vercel vercel bot commented on b38716e Sep 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

stwui – ./

stwui.vercel.app
stwui-n00nday.vercel.app
stwui-git-main-n00nday.vercel.app

Please sign in to comment.