From 11e1a81ada484f21ffa3f3b1622c535a76faab7f Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 2 Feb 2022 19:28:47 -0800 Subject: [PATCH] Fix extra switch --- components/Party/index.tsx | 4 ++-- components/ToggleSwitch/index.tsx | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/components/Party/index.tsx b/components/Party/index.tsx index 51d7eb4e..99a5ab17 100644 --- a/components/Party/index.tsx +++ b/components/Party/index.tsx @@ -90,7 +90,7 @@ const Party = (props: Props) => { // Render: JSX components const navigation = ( { partyId={props.partyId} mainhand={props.mainWeapon} weapons={props.weapons || {}} - extra={props.extra} + extra={extra} editable={props.editable} createParty={createParty} pushHistory={props.pushHistory} diff --git a/components/ToggleSwitch/index.tsx b/components/ToggleSwitch/index.tsx index 379a3c8a..ddcd0e54 100644 --- a/components/ToggleSwitch/index.tsx +++ b/components/ToggleSwitch/index.tsx @@ -12,20 +12,20 @@ interface Props { const ToggleSwitch: React.FC = (props: Props) => { return (
- - + +
- ); + ) } export default ToggleSwitch \ No newline at end of file