fixing hydration issue
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// /types/uiPart.ts
|
||||
export type UiPart = {
|
||||
id: string;
|
||||
name: string;
|
||||
brand: string;
|
||||
caliber?: string | null;
|
||||
platform: string;
|
||||
partRole: string;
|
||||
|
||||
// allow nulls from API (don’t coerce to 0)
|
||||
price?: number | null;
|
||||
imageUrl?: string;
|
||||
buyUrl?: string;
|
||||
buyShortUrl?: string;
|
||||
|
||||
inStock?: boolean | null;
|
||||
};
|
||||
Reference in New Issue
Block a user