Skip to content

Commit 3d6892f

Browse files
committed
fix: unblock Pages build and ship favicon in static output
- Remove unused MemorialFeatureType import (TS6196). - Move favicon.ico to public/ so Vite copies it to dist. - Point index.html rel=icon at /favicon.ico (base rewritten at build). Made-with: Cursor
1 parent af68b50 commit 3d6892f

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" />
5+
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
</head>
88
<body>
File renamed without changes.

src/supabase/submissionBatches.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { GeoJSON } from "geojson";
22
import supabase from ".";
3-
import type { MemorialFeatureType, PendingSite } from "./memorialSites";
3+
import type { PendingSite } from "./memorialSites";
44

55
/** Matches `PendingPinkNode` in MapPage (`tempId` is stable per geo_feature row for hydration). */
66
export interface SubmissionBatchPinkNodeState {

0 commit comments

Comments
 (0)