Skip to content

Commit 1c4061a

Browse files
committed
fix text for forked at
1 parent c7ebbb5 commit 1c4061a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/remix-ide/src/blockchain/blockchain.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export class Blockchain extends Plugin {
157157
_paq.push(['trackEvent', 'blockchain', 'providerPinned', name])
158158
this.emit('providersChanged')
159159
this.changeExecutionContext({ context: name }, null, null, null)
160-
this.call('notification', 'toast', `VM state ${providerName} forked and selected as current envionment.`)
160+
this.call('notification', 'toast', `VM state '${providerName}' forked and selected as current envionment.`)
161161
})
162162

163163
this.on('environmentExplorer', 'providerUnpinned', (name, provider) => {

libs/remix-ui/environment-explorer/src/lib/components/environment-explorer-ui.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ const defaultSections: environmentExplorerUIGridSections = {
2929
<div><b>Latest Block: </b>{parseInt(latestBlock)}</div>
3030
<CustomTooltip
3131
placement="auto"
32-
tooltipId="overlay-tooltip-compile"
32+
tooltipId="overlay-tooltip-forkedAt"
3333
tooltipText={`Forked at: ${(new Date(timestamp)).toLocaleString()}`}
3434
>
35-
<div><b>Saved at: </b>{(new Date(timestamp)).toDateString()}</div>
35+
<div><b>Forked at: </b>{(new Date(timestamp)).toDateString()}</div>
3636
</CustomTooltip>
3737
</>)
3838
}

0 commit comments

Comments
 (0)