Skip to content

Commit

Permalink
Fix step navigation is not hide when isShowStepNavigation false
Browse files Browse the repository at this point in the history
Fixes: AFORM-3858
  • Loading branch information
hungoptimizely committed Jan 4, 2024
1 parent 3673b07 commit a443c8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const FormStepNavigation = (props: FormStepNavigationProps) => {

return (
<>
{isShowStepNavigation &&
{isShowStepNavigation && form.properties.showNavigationBar &&
<nav role="navigation" className="Form__NavigationBar">
<button
type="submit"
Expand Down

0 comments on commit a443c8d

Please sign in to comment.