fix a non-existent description, move the description right below the image

This commit is contained in:
2025-06-07 15:33:29 -06:00
parent 485eac59a0
commit 41dad3254d
4 changed files with 16 additions and 16 deletions

View File

@@ -5,8 +5,8 @@ import { logger } from "./utils/logger";
const platform = process.env.VITE_PLATFORM;
const pwa_enabled = process.env.VITE_PWA_ENABLED === "true";
logger.error("[Web] PWA enabled", { pwa_enabled });
logger.error("[Web] Platform", { platform });
logger.info("[Web] PWA enabled", { pwa_enabled });
logger.info("[Web] Platform", { platform });
// Only import service worker for web builds
if (platform !== "electron" && pwa_enabled) {