Skip to content

Commit 4032872

Browse files
fix: corrigir a ordem de importação do BackendContext no plugin de keybinds
1 parent 95a4bf4 commit 4032872

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/plugins/global-keybinds/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { globalShortcut, ipcMain } from 'electron';
22
import prompt, { type KeybindOptions } from 'custom-electron-prompt';
33

4-
import type { BackendContext } from '@/types/contexts';
5-
64
import { eventRace } from './utils';
75
import { createPlugin } from '@/utils';
86

97
import promptOptions from '@/providers/prompt-options';
108
import { onPlayerApiReady } from './renderer';
119
import { t } from '@/i18n';
10+
import type { BackendContext } from '@/types/contexts';
1211

1312
export type GlobalKeybindsPluginConfig = {
1413
enabled: boolean;

0 commit comments

Comments
 (0)