Skip to content

Commit

Permalink
cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Apr 29, 2024
1 parent e04e1be commit 8234e13
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default defineComponent({
methods: {
setLocale(lang: string) {
this.state.language = lang
this.locale = lang;
this.locale = lang
},
zoomFontSize(payload: { baseFontSize: number }) {
this.baseFontSize = payload.baseFontSize
Expand Down
4 changes: 2 additions & 2 deletions src/components/turn/SeasonAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export default defineComponent({
AppIcon
},
setup() {
const { t } = useI18n();
return { t };
const { t } = useI18n()
return { t }
},
props: {
cardDeck: {
Expand Down
4 changes: 2 additions & 2 deletions src/components/turn/SeasonActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export default defineComponent({
AppIcon
},
setup() {
const { t } = useI18n();
return { t };
const { t } = useI18n()
return { t }
},
props: {
navigationState: {
Expand Down

0 comments on commit 8234e13

Please sign in to comment.