Fix incorrect references
This commit is contained in:
parent
67d5ada594
commit
d1962a5cfa
2 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ const ExtraWeapons = (props: Props) => {
|
||||||
unitType={1}
|
unitType={1}
|
||||||
gridWeapon={props.grid[props.offset + i]}
|
gridWeapon={props.grid[props.offset + i]}
|
||||||
onClick={() => { props.onClick(props.offset + i)}}
|
onClick={() => { props.onClick(props.offset + i)}}
|
||||||
updateUncap={updateUncap}
|
updateUncap={props.updateUncap}
|
||||||
/>
|
/>
|
||||||
</li>
|
</li>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ const WeaponUnit = (props: Props) => {
|
||||||
type="weapon"
|
type="weapon"
|
||||||
ulb={weapon?.uncap.ulb || false}
|
ulb={weapon?.uncap.ulb || false}
|
||||||
flb={weapon?.uncap.flb || false}
|
flb={weapon?.uncap.flb || false}
|
||||||
uncapLevel={props.gridWeapon?.uncap_level!}
|
uncapLevel={props.gridWeapon?.uncapLevel!}
|
||||||
updateUncap={passUncapData}
|
updateUncap={passUncapData}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue