We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a0715c commit b830e4bCopy full SHA for b830e4b
apps/tangle-cloud/app/blueprints/[id]/page.tsx
@@ -55,13 +55,9 @@ const Page = ({ params }: { params: { id: string } }) => {
55
<SkeletonLoader className="min-h-52" />
56
</div>
57
);
58
- }
59
-
60
- if (error) {
+ } else if (error) {
61
return <ErrorFallback title={error.name} />;
62
63
64
- if (result === null) {
+ } else if (result === null) {
65
// TODO: Should redirect to the 404 page
66
return null;
67
}
libs/tangle-shared-ui/src/components/tables/Operators/index.tsx
@@ -1,3 +1,5 @@
1
+'use client';
2
+
3
import {
4
ColumnDef,
5
createColumnHelper,
0 commit comments