mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
🚨 Fix compilation with new lockfile
This commit is contained in:
@@ -22,7 +22,7 @@ export function migrateConfig(config: Config): BackendConfigType {
|
||||
name: config.name ?? 'default',
|
||||
},
|
||||
categories: [],
|
||||
widgets: migrateModules(config).filter(widget => widget !== null),
|
||||
widgets: migrateModules(config).filter((widget) => widget !== null),
|
||||
apps: [],
|
||||
settings: {
|
||||
common: {
|
||||
@@ -231,7 +231,7 @@ const migrateModules = (config: Config): IWidget<string, any>[] => {
|
||||
},
|
||||
},
|
||||
shape: {},
|
||||
} as IDashDotTile;
|
||||
} as unknown as IDashDotTile;
|
||||
}
|
||||
case 'date':
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user