From 1b26b4549673cec3887bf85d9169f54d629b4098 Mon Sep 17 00:00:00 2001 From: r1skz3ro Date: Tue, 2 Jul 2024 14:58:37 +0200 Subject: [PATCH] fix: remove unused exports --- frontend/.husky/pre-commit | 5 ++++- frontend/src/components/common/Button/index.ts | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/.husky/pre-commit b/frontend/.husky/pre-commit index ba30f26d..a998f15c 100644 --- a/frontend/.husky/pre-commit +++ b/frontend/.husky/pre-commit @@ -1,4 +1,7 @@ # hooks start from the project root directory + cd frontend -yarn lint:fix && yarn format +yarn lint:fix +yarn format +yarn compile diff --git a/frontend/src/components/common/Button/index.ts b/frontend/src/components/common/Button/index.ts index d5c33787..fe9c53c5 100644 --- a/frontend/src/components/common/Button/index.ts +++ b/frontend/src/components/common/Button/index.ts @@ -1,2 +1 @@ export { Button } from './Button'; -export type { StyleTypes, Variants, Props } from './Button.interface';