🛠️ Rename type tCategory to Category for consistency in type definitions

This commit is contained in:
pheralb
2025-09-01 11:27:22 +01:00
parent 55199765be
commit 2692c7d34d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
export type tCategory =
export type Category =
| "All"
| "AI"
| "Software"
+2 -2
View File
@@ -1,4 +1,4 @@
import type { tCategory } from "./categories";
import type { Category } from "./categories";
export type ThemeOptions = {
dark: string;
@@ -8,7 +8,7 @@ export type ThemeOptions = {
export interface iSVG {
id?: number;
title: string;
category: tCategory | tCategory[];
category: Category | Category[];
route: string | ThemeOptions;
wordmark?: string | ThemeOptions;
brandUrl?: string;