Skip to content

Commit 2e8dbf5

Browse files
chore: update error boundary
1 parent 58d3255 commit 2e8dbf5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

β€Žsrc/course/02- lessons/03-Gold/ErrorBoundary/exercise/exercise.stories.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Meta, StoryObj } from '@storybook/react';
33
import { Final } from './exercise';
44

55
const meta: Meta<typeof Final> = {
6-
title: 'Lessons/πŸ₯‡ Gold/Error Boundaries/02-Exercise',
6+
title: 'Lessons/πŸ₯‡ Gold/πŸ›‘οΈ Error Boundaries Pattern/02-Exercise',
77
component: Final
88
};
99

β€Žsrc/course/02- lessons/03-Gold/ErrorBoundary/final/final.stories.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Meta, StoryObj } from '@storybook/react';
33
import { Final } from './final';
44

55
const meta: Meta<typeof Final> = {
6-
title: 'Lessons/πŸ₯‡ Gold/Error Boundaries/03-Final',
6+
title: 'Lessons/πŸ₯‡ Gold/πŸ›‘οΈ Error Boundaries Pattern/03-Final',
77
component: Final
88
};
99

β€Žsrc/course/02- lessons/03-Gold/ErrorBoundary/lesson.mdxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Meta } from '@storybook/blocks';
22

3-
<Meta title="Lessons/πŸ₯‡ Gold/Error Boundaries/01-Lesson" />
3+
<Meta title="Lessons/πŸ₯‡ Gold/πŸ›‘οΈ Error Boundaries Pattern/01-Lesson" />
44

5-
# Error Boundaries Pattern
5+
# πŸ›‘οΈ Error Boundaries Pattern
66

77
React makes it easy to build interactive UIs, but what happens when something goes wrong during rendering? Without safeguards, an error in one part of the UI can crash the entire application.
88

0 commit comments

Comments
Β (0)