Skip to content

Commit af87a1f

Browse files
authored
Merge branch 'main' into fix/use-async-effect-cleanup-race-condition
2 parents 8f26947 + 506b48a commit af87a1f

54 files changed

Lines changed: 1974 additions & 201 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/marketplace.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "react-design-philosophy",
3+
"owner": { "name": "toss" },
4+
"metadata": {
5+
"description": "React design philosophy skills for hook review, hook writing, and higher-level API abstraction decisions."
6+
},
7+
"plugins": [
8+
{
9+
"name": "react-design-philosophy",
10+
"source": "./packages/plugin"
11+
}
12+
]
13+
}

.github/workflows/changeset-bot.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/core/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ All `react-simplikit` implementations use special rendering functions to verify
257257
expect(screen.getByText('Test Content')).toBeInTheDocument();
258258
});
259259
260-
it('should hydration mismatch error occured', async () => {
260+
it('should hydration mismatch error occurred', async () => {
261261
// This test code will fail due to a hydration mismatch error.
262262
await renderSSR(() => (
263263
<Component>

docs/core/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function Page() {
110110

111111
## Ensuring Safe Operation in SSR Environments
112112

113-
With the active adoption of SSR environments, poorly written components or hooks can cause errors in SSR environments or hydration mismatches. `react-simplikit` was designed to minimize these issues and guarantees this through 100% test coverage in SSR environments.
113+
With the active adoption of SSR environments, poorly written components or hooks can cause errors in SSR environments or hydration mismatches. `react-simplikit` was designed to minimize these issues and guarantee this through 100% test coverage in SSR environments.
114114

115115
## No Dependencies Beyond React
116116

0 commit comments

Comments
 (0)