@@ -54,7 +54,7 @@ export function Td({
}: PropsWithChildren<{ noLink?: boolean }>) {
const { to } = useContext(TrContext);
if (!to || noLink) {
- return | {children} | ;
+ return {children} | ;
}
return (
diff --git a/packages/ui/src/Layouts/Layout.tsx b/packages/ui/src/Layouts/Layout.tsx
index a9bf80492..75d52c0bd 100644
--- a/packages/ui/src/Layouts/Layout.tsx
+++ b/packages/ui/src/Layouts/Layout.tsx
@@ -10,7 +10,7 @@ type Props = PropsWithChildren<{
export function Layout({ header, sidebar, children }: Props) {
return (
-
+
|