From b1b1fb3cea886727eb463606705519345fe33d21 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 25 Jun 2025 17:06:19 +0800 Subject: [PATCH] fix type check --- next-ui/uno.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-ui/uno.config.ts b/next-ui/uno.config.ts index 9aaf3094..b30c4803 100644 --- a/next-ui/uno.config.ts +++ b/next-ui/uno.config.ts @@ -4,7 +4,7 @@ import { aliases } from 'vuetify/iconsets/mdi' // build the safelist from the vuetify icon aliases const vuetifyIcons = Object.keys(aliases).map( - (key) => `i-mdi:${aliases[key].toString().substring(4)}`, + (key) => `i-mdi:${aliases[key]!.toString().substring(4)}`, ) export default defineConfig({