Skip to content

Commit 4b1da4e

Browse files
committed
Update old component names
1 parent 252c2bb commit 4b1da4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Controller Support",
44
"description": "Enables individual game mapping of controller to keyboard inputs",
55
"author": "Flashpoint Archive",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"main": "./dist/extension.js",
88
"icon": "icon.svg",
99
"artifactName": "controller-support.zip",

src/components/Initializer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ export default function Initializer() {
88
useEffect(() => {
99
dispatch(addGameSidebarComponent({
1010
section: 'bottom',
11-
name: 'core_controller/ControllerSupport'
11+
name: 'controller_support/ControllerSupport'
1212
}));
1313

1414
return () => {
1515
dispatch(removeGameSidebarComponent({
1616
section: 'bottom',
17-
name: 'core_controller/ControllerSupport'
17+
name: 'controller_support/ControllerSupport'
1818
}));
1919
};
2020
}, [dispatch]);

0 commit comments

Comments
 (0)