mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-25 10:05: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">
|
<script setup lang="ts">
|
||||||
import { Detail } from "~~/components/global/DetailsSection/types";
|
import { Detail } from "~~/components/global/DetailsSection/types";
|
||||||
import { themes } from "~~/lib/data/themes";
|
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({
|
definePageMeta({
|
||||||
middleware: ["auth"],
|
middleware: ["auth"],
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
// Currency Selection
|
// Currency Selection
|
||||||
const currency = ref<typeof currencies.value[number]>({
|
const currency = ref<CurrenciesCurrency>({
|
||||||
code: "USD",
|
code: "USD",
|
||||||
name: "United States Dollar",
|
name: "United States Dollar",
|
||||||
local: "en-US",
|
local: "en-US",
|
||||||
|
|
Loading…
Reference in a new issue