Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Nov 25, 2024
1 parent d16b383 commit 912da82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/presence/use-presence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type UsePresenceReturn = ReturnType<typeof usePresence>
export const usePresence = (props: UsePresenceProps) => {
const { lazyMount, unmountOnExit, ...rest } = props
const wasEverPresent = useRef(false)
const present = useDebounce(props.present, 1)
const present = useDebounce(props.present, 0)
const context: Partial<presence.Context> = {
...rest,
present,
Expand Down

0 comments on commit 912da82

Please sign in to comment.