Fix MASTER_SETTINGS_KEY type mismatch in PlatformServiceMixin

- Convert MASTER_SETTINGS_KEY from number to string to match method signatures
- Resolves TypeScript errors in PlatformServiceMixin.ts lines 462 & 490
- Maintains backward compatibility with existing database records
- Build verification passed successfully
This commit is contained in:
Matthew Raymer
2025-07-02 13:41:33 +00:00
parent 03e14371f6
commit ddff965905

View File

@@ -83,6 +83,6 @@ export const SettingsSchema = {
/**
* Constants.
*/
export const MASTER_SETTINGS_KEY = 1;
export const MASTER_SETTINGS_KEY = "1";
export const DEFAULT_PASSKEY_EXPIRATION_MINUTES = 15;