From 2692c7d34d55df4ac2dad852463bb196736e0f5d Mon Sep 17 00:00:00 2001 From: pheralb Date: Mon, 1 Sep 2025 11:27:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Rename=20type=20tCatego?= =?UTF-8?q?ry=20to=20Category=20for=20consistency=20in=20type=20definition?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/categories.ts | 2 +- src/types/svg.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/types/categories.ts b/src/types/categories.ts index 921d8a6..b95bef8 100644 --- a/src/types/categories.ts +++ b/src/types/categories.ts @@ -1,4 +1,4 @@ -export type tCategory = +export type Category = | "All" | "AI" | "Software" diff --git a/src/types/svg.ts b/src/types/svg.ts index 2eb6a8b..76df3e0 100644 --- a/src/types/svg.ts +++ b/src/types/svg.ts @@ -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;