Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit cd0fa71

Browse files
committed
Clean up
1 parent 15c0eee commit cd0fa71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/react/helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ export function isLikelyReactComponent(type: any): Boolean {
2828

2929
export function createNamedContext<T>(defaultValue: T, name: string) {
3030
const ctx = createContext<T>(defaultValue)
31-
ctx.displayName = name // show in devTools
31+
ctx.displayName = name // display name in devTools
3232
return ctx
3333
}

0 commit comments

Comments
 (0)