// Holds the admin-configured Datenschutzhinweis as raw text. Populated by // `GET /api/v1/me/context` on app start and updated live via the SSE `event-updated` // signal so admin edits propagate without a reload. // // Empty string ('') means "not configured" — the My Account page hides the section // entirely in that case. import { writable } from 'svelte/store'; export const privacyNote = writable('');