From d797001907d91bec8bf1d29b2b8f408a65ae2014 Mon Sep 17 00:00:00 2001 From: Matt Jones <885417+jonesmac@users.noreply.github.com> Date: Mon, 30 Dec 2024 17:59:06 -0500 Subject: [PATCH] remove code comment --- .../error/src/components/ErrorBoundary/ThrownErrorBoundary.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/sdk/packages/error/src/components/ErrorBoundary/ThrownErrorBoundary.tsx b/packages/sdk/packages/error/src/components/ErrorBoundary/ThrownErrorBoundary.tsx index da4e99a19..b5916d017 100644 --- a/packages/sdk/packages/error/src/components/ErrorBoundary/ThrownErrorBoundary.tsx +++ b/packages/sdk/packages/error/src/components/ErrorBoundary/ThrownErrorBoundary.tsx @@ -4,7 +4,6 @@ import type { ModuleError } from '@xyo-network/payload-model' import type { FC } from 'react' import React from 'react' -// calling the hook outside of the component since only can be called in functional component export const ThrownErrorBoundary: FC> = (props) => { return {...props} /> }