Skip to content

Commit

Permalink
Change imports from useKResponsiveWindow composable
Browse files Browse the repository at this point in the history
  • Loading branch information
KshitijThareja committed Nov 10, 2023
1 parent c589edc commit 6a0feef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@
inject: ['wizardService'],
mixins: [commonCoreStrings],
setup() {
const { windowIsSmall, windowIsPortrait } = useKResponsiveWindow();
return { windowIsSmall, windowIsPortrait };
const { windowIsSmall } = useKResponsiveWindow();
return { windowIsSmall };
},
props: {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
},
mixins: [commonCoreStrings],
setup() {
const { windowIsSmall, windowIsPortrait } = useKResponsiveWindow();
return { windowIsSmall, windowIsPortrait };
const { windowIsLarge } = useKResponsiveWindow();
return { windowIsLarge };
},
data() {
return {
Expand Down

0 comments on commit 6a0feef

Please sign in to comment.