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 a795dd2 commit 07f3213
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,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
2 changes: 1 addition & 1 deletion src/components/turn/PlayerTurn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default defineComponent({
pass() : void {
const roundTurn = this.navigationState.roundTurn
if (!roundTurn) {
return;
return
}
roundTurn.pass = true
if (!this.navigationState.anyonePassed) {
Expand Down

0 comments on commit 07f3213

Please sign in to comment.