This commit is contained in:
Carl-Gerhard Lindesvärd
2026-03-06 10:28:02 +01:00
parent 0cfccd549b
commit 0b5d4fa0d1
3 changed files with 1 additions and 4 deletions

View File

@@ -41,7 +41,6 @@ export default function App() {
op.setGroups(u.groupIds);
for (const id of u.groupIds) {
const meta = PRESET_GROUPS.find((g) => g.id === id);
console.log('meta', meta);
if (meta) {
op.setGroup(id, meta);
}

View File

@@ -1,4 +1,4 @@
/** biome-ignore-all lint/style/useDefaultSwitchClause: <explanation> */
/** biome-ignore-all lint/style/useDefaultSwitchClause: switch cases are exhaustive by design */
import { DateTime, stripLeadingAndTrailingSlashes } from '@openpanel/common';
import type {
IChartEventFilter,

View File

@@ -670,8 +670,6 @@ export async function getEventList(options: GetEventListOptions) {
});
}
console.log('getSql', getSql());
return data;
}