🔧 fix: decrease timeout for tooltip to improve user experience

This commit is contained in:
Mattias Granlund 2023-11-29 10:23:41 +01:00
parent 65d1c0e629
commit a372f3b5cf

View File

@ -5,7 +5,7 @@
export let label: string | undefined = undefined;
type Placement = 'top' | 'right' | 'bottom' | 'left';
export let placement: Placement = 'bottom';
export let timeoutMilliseconds = 2500;
export let timeoutMilliseconds = 1500;
const [floatingRef, floatingContent] = createFloatingActions({
strategy: 'absolute',