fix warning in console

This commit is contained in:
mrjvs 2023-10-29 22:22:27 +01:00
parent 90f2528feb
commit a8b47baa5a
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ function RouterBase(props: { id: string; children: ReactNode }) {
api.set({ api.set({
width: "100%", width: "100%",
}); });
api({ api.start({
height: `${routeMeta?.height ?? 0}px`, height: `${routeMeta?.height ?? 0}px`,
}); });
} else if (oldData?.height === undefined && data.height !== undefined) { } else if (oldData?.height === undefined && data.height !== undefined) {
@ -63,7 +63,7 @@ function RouterBase(props: { id: string; children: ReactNode }) {
width: `${routeMeta?.width ?? 0}px`, width: `${routeMeta?.width ?? 0}px`,
}); });
} else { } else {
api({ api.start({
height: `${routeMeta?.height ?? 0}px`, height: `${routeMeta?.height ?? 0}px`,
width: `${routeMeta?.width ?? 0}px`, width: `${routeMeta?.width ?? 0}px`,
}); });