Merge pull request #3804 from RSSNext/hotfix/25.5.25
chore(desktop): Release v0.4.9 for hotfix
This commit is contained in:
commit
5251fa921e
|
|
@ -1,11 +1,5 @@
|
|||
# What's new in vNEXT_VERSION
|
||||
|
||||
## Shiny new things
|
||||
|
||||
## Improvements
|
||||
|
||||
## No longer broken
|
||||
|
||||
## Thanks
|
||||
|
||||
Special thanks to external contributors @ for their valuable contributions
|
||||
Performance: Fix context menu re-render loop.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Folo",
|
||||
"type": "module",
|
||||
"version": "0.4.8",
|
||||
"version": "0.4.9",
|
||||
"private": true,
|
||||
"description": "Follow everything in one place",
|
||||
"author": "Folo Team",
|
||||
|
|
|
|||
|
|
@ -32,10 +32,11 @@ export const useGlobalFocusableScope = () => {
|
|||
}
|
||||
|
||||
export const useGlobalFocusableHasScope = (scope: string) => {
|
||||
return useGlobalFocusableScopeSelector((v) => v.has(scope))
|
||||
return useGlobalFocusableScopeSelector(useCallback((v) => v.has(scope), [scope]))
|
||||
}
|
||||
export const useGlobalFocusableScopeSelector = (selector: (scope: Set<string>) => boolean) => {
|
||||
const ctx = use(GlobalFocusableContext)
|
||||
|
||||
return useAtomValue(useMemo(() => selectAtom(ctx, selector), [ctx, selector]))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue