mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 00:25:43 +00:00
specify explicit type
This commit is contained in:
parent
cb01595180
commit
de8ecde3d1
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
<script setup lang="ts">
|
||||
import { Detail } from "~~/components/global/DetailsSection/types";
|
||||
import { themes } from "~~/lib/data/themes";
|
||||
import { NotifierCreate, NotifierOut } from "~~/lib/api/types/data-contracts";
|
||||
import { CurrenciesCurrency, NotifierCreate, NotifierOut } from "~~/lib/api/types/data-contracts";
|
||||
|
||||
definePageMeta({
|
||||
middleware: ["auth"],
|
||||
|
@ -25,7 +25,7 @@
|
|||
});
|
||||
|
||||
// Currency Selection
|
||||
const currency = ref<typeof currencies.value[number]>({
|
||||
const currency = ref<CurrenciesCurrency>({
|
||||
code: "USD",
|
||||
name: "United States Dollar",
|
||||
local: "en-US",
|
||||
|
|
Loading…
Reference in a new issue