From 18bbed501bde2aca5c04a2d7f5c6fa0fb19d8da0 Mon Sep 17 00:00:00 2001 From: Paul Meier Date: Sun, 21 Jun 2026 11:33:52 -0500 Subject: [PATCH] style(frontend): format manifest.webmanifest with prettier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `frontend/static/manifest.webmanifest` was not prettier-formatted (2-space indent vs the repo's tab style), so `npm run check`'s `prettier --check .` step — and therefore the frontend CI job — fails on it for every PR. Run `prettier --write` to bring it in line. Whitespace only; no semantic change. Co-Authored-By: Claude Opus 4.8 --- frontend/static/manifest.webmanifest | 80 ++++++++++++++-------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/frontend/static/manifest.webmanifest b/frontend/static/manifest.webmanifest index 8af3a285..a3d17652 100644 --- a/frontend/static/manifest.webmanifest +++ b/frontend/static/manifest.webmanifest @@ -1,42 +1,42 @@ { - "name": "OxiCloud", - "short_name": "OxiCloud", - "description": "Fast, private cloud storage built with Rust.", - "start_url": "/", - "scope": "/", - "display": "standalone", - "background_color": "#0f172a", - "theme_color": "#0f172a", - "icons": [ - { - "src": "/logo/logo-plain.svg", - "sizes": "any", - "type": "image/svg+xml", - "purpose": "any" - }, - { - "src": "/logo/logo-maskable.svg", - "sizes": "any", - "type": "image/svg+xml", - "purpose": "maskable" - }, - { - "src": "/logo/maskable-192.png", - "sizes": "192x192", - "type": "image/png", - "purpose": "maskable" - }, - { - "src": "/logo/maskable-512.png", - "sizes": "512x512", - "type": "image/png", - "purpose": "maskable" - }, - { - "src": "/logo/maskable-512.png", - "sizes": "512x512", - "type": "image/png", - "purpose": "any" - } - ] + "name": "OxiCloud", + "short_name": "OxiCloud", + "description": "Fast, private cloud storage built with Rust.", + "start_url": "/", + "scope": "/", + "display": "standalone", + "background_color": "#0f172a", + "theme_color": "#0f172a", + "icons": [ + { + "src": "/logo/logo-plain.svg", + "sizes": "any", + "type": "image/svg+xml", + "purpose": "any" + }, + { + "src": "/logo/logo-maskable.svg", + "sizes": "any", + "type": "image/svg+xml", + "purpose": "maskable" + }, + { + "src": "/logo/maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/logo/maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/logo/maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any" + } + ] }