@@ -0,0 +1,9 @@
import type { Action } from 'svelte/action';
/**
* Focuses the given HTML element.
* @param node - The HTML element to focus.
*/
export const focus: Action<HTMLElement> = (node) => {
node.focus();
};
The note is not visible to the blocked user.