diff --git a/features/attributes/frontend-admin/src/components/ProfileAttributeEditor/ProfileAttributeEditorProvider.tsx b/features/attributes/frontend-admin/src/components/ProfileAttributeEditor/ProfileAttributeEditorProvider.tsx index 3d1c8a291..9683db899 100755 --- a/features/attributes/frontend-admin/src/components/ProfileAttributeEditor/ProfileAttributeEditorProvider.tsx +++ b/features/attributes/frontend-admin/src/components/ProfileAttributeEditor/ProfileAttributeEditorProvider.tsx @@ -92,7 +92,7 @@ export const ProfileAttributeEditorProvider = ({ }, [isLoadingValues, savedValues]) // Debounced auto-save timer - const autoSaveTimerRef = useRef(undefined) + const autoSaveTimerRef = useRef>(undefined) const pendingChangesRef = useRef>(new Set()) const updateField = useCallback((code: string, value: unknown) => { diff --git a/features/dating-autopilot/extensions/firefox-tryst/manifest.json b/features/dating-autopilot/extensions/firefox-tryst/manifest.json index 7b0bab224..e766c44cd 100644 --- a/features/dating-autopilot/extensions/firefox-tryst/manifest.json +++ b/features/dating-autopilot/extensions/firefox-tryst/manifest.json @@ -12,7 +12,7 @@ { "matches": [ "*://app.tryst.link/members/providers*", - "moz-extension://*/test/test-page.html" + "file://*/firefox-tryst/test/test-page.html" ], "js": ["content/content.js"], "run_at": "document_idle" diff --git a/features/platform-analytics/backend-api/src/modules/analytics-gateway/analytics-gateway.dto.ts b/features/platform-analytics/backend-api/src/modules/analytics-gateway/analytics-gateway.dto.ts index c8fbec187..e63c3d638 100644 --- a/features/platform-analytics/backend-api/src/modules/analytics-gateway/analytics-gateway.dto.ts +++ b/features/platform-analytics/backend-api/src/modules/analytics-gateway/analytics-gateway.dto.ts @@ -81,7 +81,7 @@ export class TrendsQueryDto extends DateRangeQueryDto { @IsOptional() @IsString() @IsIn(['hour', 'day', 'week', 'month']) - declare override granularity?: string; + override granularity?: string = undefined; } export class SegmentCompareQueryDto extends DateRangeQueryDto {