refactor: rename storage key to Comfy.FeatureUsage for consistency

This commit is contained in:
bymyself
2026-01-20 13:28:26 -08:00
parent 7d2195bdeb
commit 0ad85d10cf
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
const STORAGE_KEY = 'comfy.featureUsage'
const STORAGE_KEY = 'Comfy.FeatureUsage'
describe('useFeatureUsageTracker', () => {
beforeEach(() => {

View File

@@ -9,7 +9,7 @@ interface FeatureUsage {
type FeatureUsageRecord = Record<string, FeatureUsage>
const STORAGE_KEY = 'comfy.featureUsage'
const STORAGE_KEY = 'Comfy.FeatureUsage'
/**
* Tracks feature usage for survey eligibility.