diff --git a/src/components/PrivacyBlock.astro b/src/components/PrivacyBlock.astro index 64812b0..dff721a 100644 --- a/src/components/PrivacyBlock.astro +++ b/src/components/PrivacyBlock.astro @@ -16,10 +16,10 @@ const s = t(locale); * Every claim here is checkable in the app source, which is the point of making * them: no-ads (no advertising SDK in libs.versions.toml), no-analytics (Firebase * Analytics explicitly deactivated in androidApp/src/main/AndroidManifest.xml:19-22), - * EU hosting (PRIVACY.md:105,171), three permissions (the only - * entries across every manifest in the repo). + * EU hosting (PRIVACY.md:105,171), instant deletion (the flow documented in + * src/pages/account-deletion.mdx, which deletes the account immediately). */ -const icons: IconName[] = ["no-ads", "no-analytics", "server", "key"]; +const icons: IconName[] = ["no-ads", "no-analytics", "server", "shield"]; ---