fix: TypeScript type errors for build (order_num null, siteSettings prop)

This commit is contained in:
mstfyldz
2026-06-05 17:41:43 +03:00
parent 5e4e2f0db9
commit ba20ed819b
2 changed files with 8 additions and 2 deletions
@@ -7,7 +7,7 @@ import Link from 'next/link'
type Category = {
id: number
name_tr: string
order_num: number
order_num: number | null
status: number | null
}