Skip to content

Commit

Permalink
station -> checker
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruber committed Feb 11, 2025
1 parent c253b04 commit 5704adf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion renderer/src/pages/dashboard/RewardsInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const RewardsInfo = ({
}
style={{ maxWidth: '230px' }}
content={`This is the reward total you have accrued since your last payout.
Scheduled earning will be sent to your Station Wallet approximately once a week,
Scheduled earning will be sent to your Checker Wallet approximately once a week,
provided you have earned more than the payout threshold.`}
/>

Expand Down
2 changes: 1 addition & 1 deletion renderer/src/pages/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Settings = () => {
/>
<SettingsGroupItem
title='Subnet logs'
description={`Saving subnet logs in the Station app helps users track
description={`Saving subnet logs in the Checker app helps users track
and diagnose issues, providing insights into the performance of individual
components for effective troubleshooting.`}
input={
Expand Down
2 changes: 1 addition & 1 deletion renderer/src/pages/wallet/TransferWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const TransferWrapper = ({
onClick={() => openDocsLink()}
className='focus-visible:outline-slate-400'
>
Learn more about your Station wallet
Learn more about your Checker wallet
</Text>
</footer>
</section>
Expand Down
4 changes: 2 additions & 2 deletions renderer/src/pages/wallet/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ const Wallet = () => {
<div className='px-9 mt-28 flex flex-col gap-5 animate-fadeIn'>
<BorderedBox className='p-5 flex flex-col gap-2'>
<Text font='mono' size='3xs' color='primary' uppercase>
&#47;&#47; Station wallet balance ... :
&#47;&#47; Checker wallet balance ... :
</Text>
<Text font='mono' size='s'>{formatFilValue(walletBalance)}{' '}FIL</Text>
</BorderedBox>
<BorderedBox className='p-5 flex flex-col gap-2'>
<Text font='mono' size='3xs' color='primary' uppercase>&#47;&#47; Station address ... :</Text>
<Text font='mono' size='3xs' color='primary' uppercase>&#47;&#47; Checker address ... :</Text>
<div className='flex gap-5 items-center'>
<Address address={checkerAddress} />
<Address address={checkerAddress0x} />
Expand Down
6 changes: 3 additions & 3 deletions renderer/src/test/dashboard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import useCheckerRewards from 'src/hooks/CheckerRewards'
import { stubGlobalElectron, renderApp } from './helpers'
import { useEffect, useState } from 'react'

vi.mock('src/hooks/StationWallet')
vi.mock('src/hooks/StationActivity')
vi.mock('src/hooks/StationRewards')
vi.mock('src/hooks/CheckerWallet')
vi.mock('src/hooks/CheckerActivity')
vi.mock('src/hooks/CheckerRewards')
vi.mock('src/lib/checker-config')

stubGlobalElectron()
Expand Down

0 comments on commit 5704adf

Please sign in to comment.