Skip to content

Commit

Permalink
fix(GithubRequirement): add missing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jan 27, 2025
1 parent 918565a commit a4ed945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/requirements/Github/GithubRequirement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ const GithubRequirement = (props: RequirementProps) => {
</>
) : requirement.data.minAmount ? (
<>
<span>{"older than "}</span>
<span>{" older than "}</span>
<DataBlockWithRelativeDate
timestamp={requirement.data.minAmount}
/>
</>
) : requirement.data.maxAmount ? (
<>
<span>{"no older than "}</span>
<span>{" no older than "}</span>
<DataBlockWithRelativeDate
timestamp={requirement.data.maxAmount}
/>
Expand Down

0 comments on commit a4ed945

Please sign in to comment.