fix: updating themes when installing

This commit is contained in:
Chubby Granny Chaser 2025-02-16 04:28:55 +00:00
parent 22e567466f
commit c36aff8f62
No known key found for this signature in database
5 changed files with 16 additions and 6 deletions

View file

@ -1,8 +1,8 @@
export interface Theme {
id: string;
name: string;
author: string | undefined;
authorName: string | undefined;
author?: string;
authorName?: string;
isActive: boolean;
code: string;
createdAt: Date;