Skip to content

Commit

Permalink
WIP #2: Uses === instead of == now
Browse files Browse the repository at this point in the history
  • Loading branch information
BaibhaVatsa committed Dec 16, 2019
1 parent abe0065 commit 4ce5633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ArrowComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const ArrowComponent: React.FC<ArrowProps> = (props: ArrowProps) => {
onClick={() => props.handleClick(directionNumber)}
disabled={props.disabled}
style={vanillaArrowStyle}>
{(directionNumber == 1) ? <ChevronRightIcon /> : <ChevronLeftIcon />}
{(directionNumber === 1) ? <ChevronRightIcon /> : <ChevronLeftIcon />}
</Fab>
</div>
);
Expand Down

0 comments on commit 4ce5633

Please sign in to comment.