summaryrefslogtreecommitdiff
path: root/frontend/src/redux/actions/all.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/redux/actions/all.js')
-rw-r--r--frontend/src/redux/actions/all.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/redux/actions/all.js b/frontend/src/redux/actions/all.js
index 45d3ab7a..12522819 100644
--- a/frontend/src/redux/actions/all.js
+++ b/frontend/src/redux/actions/all.js
@@ -1,5 +1,5 @@
import type { GameAction } from './game';
import type { LobbyAction } from './lobby';
-import type { PlayerAction } from './players';
+import type { PlayerAction } from './user';
export type Action = PlayerAction | LobbyAction | GameAction
bgstack15