Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #154 from poap-xyz/feature/copy-minted-on-activity
Browse files Browse the repository at this point in the history
Change copy on activity page
  • Loading branch information
jm42 authored May 11, 2023
2 parents d147460 + e1ec3b2 commit ff93d6a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/activityTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function Transfer({ transfer }) {
{transfer.type === ActivityType.CLAIM ? (
<span>
{' '}
POAP claimed on event{' '}
POAP minted on event{' '}
<object>
<Link to={`/event/${transfer.eventId}`}>
#{transfer.eventId}
Expand Down
2 changes: 1 addition & 1 deletion src/components/eventCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function Content({ type, width, size, event, power }) {
style={{ width: '1rem', marginRight: '.2rem' }}
icon={size === 's' ? null : faFire}
/>
Most claimed
Most minted
</div>
) : (
''
Expand Down
8 changes: 4 additions & 4 deletions src/pages/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function TokenRow({ transfer, dateFormat }) {
{transfer.type === ActivityType.MIGRATION ? (
<img src={Migration} alt="Migration" />
) : transfer.type === ActivityType.CLAIM ? (
<img src={Claim} alt="Claim" />
<img src={Claim} alt="Mint" />
) : transfer.type === ActivityType.BURN ? (
<img src={Burn} alt="Burn" />
) : (
Expand Down Expand Up @@ -193,7 +193,7 @@ function TokenRow({ transfer, dateFormat }) {
{' '}
{transfer.transferCount && transfer.transferCount > 0
? transfer.transferCount
: 'Claimed'}{' '}
: 'Minted'}{' '}
</td>
<td style={{ wordBreak: 'break-all' }}>
{' '}
Expand Down Expand Up @@ -317,7 +317,7 @@ function TokenRowDescription({ transfer }) {
</span>
) : transfer.type === ActivityType.CLAIM ? (
<span>
POAP claimed on event{' '}
POAP minted on event{' '}
<Link to={`/event/${transfer.eventId}`}>#{transfer.eventId}</Link> on{' '}
{transfer.chain}
</span>
Expand Down Expand Up @@ -398,7 +398,7 @@ function CreateTable({ transfers, loading }) {
TX count{' '}
<FontAwesomeIcon
icon={faQuestionCircle}
data-tip="The amount of transactions this POAP has done since it the day it been claimed."
data-tip="The amount of transactions this POAP has done since it the day it been minted."
/>
<ReactTooltip effect="solid" />{' '}
</th>
Expand Down

0 comments on commit ff93d6a

Please sign in to comment.