Skip to content

Commit

Permalink
fix(catalog): 言語の選択肢が重複するのでsetで対応
Browse files Browse the repository at this point in the history
  • Loading branch information
chippy-ao committed Jul 8, 2024
1 parent 2ee6175 commit 5d4267c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog/lib/widgetbook.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class WidgetbookApp extends StatelessWidget {
],
),
LocalizationAddon(
locales: appSupportedLocales,
localizationsDelegates: appLocalizationsDelegates,
locales: appSupportedLocales.toSet().toList(),
initialLocale: appSupportedLocales.first,
),
],
Expand Down

0 comments on commit 5d4267c

Please sign in to comment.