Skip to content

Commit 1866564

Browse files
committed
fix: Namespace 분리 중 누락된 부분 수정
1 parent 464ca3e commit 1866564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common/src/components/error_handler.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const SimplifiedErrorFallback: React.FC<{ reset: () => void }> = ({ reset }) =>
4242

4343
export const ErrorFallback: React.FC<{ error: Error, reset: () => void }> = ({ error, reset }) => {
4444
const InnerErrorFallback: React.FC<{ error: Error, reset: () => void }> = ({ error, reset }) => {
45-
const { debug } = CommonContext.useCommonContext();
45+
const { debug } = CommonContext.Common.useCommonContext();
4646
return debug ? <DetailedErrorFallback error={error} reset={reset} /> : <SimplifiedErrorFallback reset={reset} />;
4747
}
4848

0 commit comments

Comments
 (0)