MCPcopy Create free account
hub / github.com/block/buzz / clearOverride

Function clearOverride

desktop/src/shared/features/store.ts:34–38  ·  view source on GitHub ↗
(featureId: string)

Source from the content-addressed store, hash-verified

32
33/** Remove a single feature override (revert to default) */
34export function clearOverride(featureId: string): void {
35 const overrides = getOverrides();
36 delete overrides[featureId];
37 window.localStorage.setItem(OVERRIDES_KEY, JSON.stringify(overrides));
38}

Callers

nothing calls this directly

Calls 1

getOverridesFunction · 0.85

Tested by

no test coverage detected