From 39d49b21df91093c710680c7149a4254efed1935 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 9aaf3094a..b30c48030 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({