Skip to content

Commit

Permalink
removed unnecessary enum, fixed padding
Browse files Browse the repository at this point in the history
  • Loading branch information
agnieszkajarosikloj committed Mar 20, 2023
1 parent e590953 commit 5edf354
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import Button from '~core/Button';
import Link from '~core/Link';

import SingleUserPicker from '../SingleUserPicker';
import { SignOption } from '../constants';

import styles from './Protectors.css';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ const IncorporationPage = () => {
</aside>
<div
className={classNames(styles.mainContainer, {
[styles.smallerPadding]: activeStageId === StagesEnum.Processing,
[styles.smallerPadding]:
activeStageId === StagesEnum.Processing ||
activeStageId === StagesEnum.Complete,
})}
>
{(activeStageId === StagesEnum.Processing ||
Expand Down

0 comments on commit 5edf354

Please sign in to comment.