Merge branch 'feature/custom-themes' of https://github.com/hydralauncher/hydra into feature/custom-themes

This commit is contained in:
Hachi-R 2025-02-16 17:08:32 -03:00
commit 5d48ce8a10
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ export function AddDownloadSourceModal({
visible,
onClose,
onAddDownloadSource,
}: AddDownloadSourceModalProps) {
}: Readonly<AddDownloadSourceModalProps>) {
const [url, setUrl] = useState("");
const [isLoading, setIsLoading] = useState(false);

View file

@ -38,7 +38,7 @@ export const ImportThemeModal = ({
isActive: false,
author: author?.id,
authorName: author?.displayName,
code: `${THEME_WEB_STORE_URL}/themes/${themeName}/theme.css`,
code: `${THEME_WEB_STORE_URL}/themes/${themeName.toLowerCase()}/theme.css`,
createdAt: new Date(),
updatedAt: new Date(),
};