refactor feature hooks to be conditionally initialized

This commit is contained in:
jeffvli
2026-01-21 02:23:25 -08:00
parent 9a4a8eb742
commit f4072c183b
12 changed files with 236 additions and 35 deletions
@@ -38,3 +38,8 @@ export const usePlaybackHotkeys = () => {
useHotkeys(playbackHotkeysItems);
};
export const PlaybackHotkeysHook = () => {
usePlaybackHotkeys();
return null;
};