Skip to content

Commit b830e4b

Browse files
committed
ci(tangle-dapp): Fix build fail
1 parent 1a0715c commit b830e4b

File tree

2 files changed

+4
-6
lines changed
  • apps/tangle-cloud/app/blueprints/[id]
  • libs/tangle-shared-ui/src/components/tables/Operators

2 files changed

+4
-6
lines changed

apps/tangle-cloud/app/blueprints/[id]/page.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,9 @@ const Page = ({ params }: { params: { id: string } }) => {
5555
<SkeletonLoader className="min-h-52" />
5656
</div>
5757
);
58-
}
59-
60-
if (error) {
58+
} else if (error) {
6159
return <ErrorFallback title={error.name} />;
62-
}
63-
64-
if (result === null) {
60+
} else if (result === null) {
6561
// TODO: Should redirect to the 404 page
6662
return null;
6763
}

libs/tangle-shared-ui/src/components/tables/Operators/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client';
2+
13
import {
24
ColumnDef,
35
createColumnHelper,

0 commit comments

Comments
 (0)