From bb163132fee64bf8a8ecab77a7d707057a260fbd Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Sat, 21 Sep 2024 23:42:59 +0200 Subject: [PATCH] Fix minor inconsistency --- stories/account/i18n.ts | 2 +- stories/login/i18n.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stories/account/i18n.ts b/stories/account/i18n.ts index 213e0f93..5615e444 100644 --- a/stories/account/i18n.ts +++ b/stories/account/i18n.ts @@ -4,4 +4,4 @@ const { useI18n, ofTypeI18n } = i18nBuilder.build(); type I18n = typeof ofTypeI18n; -export { useI18n, I18n }; +export { useI18n, type I18n }; diff --git a/stories/login/i18n.ts b/stories/login/i18n.ts index 7a479c99..0cc68eef 100644 --- a/stories/login/i18n.ts +++ b/stories/login/i18n.ts @@ -4,4 +4,4 @@ const { useI18n, ofTypeI18n } = i18nBuilder.build(); type I18n = typeof ofTypeI18n; -export { useI18n, I18n }; +export { useI18n, type I18n };