mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-24 11:57:56 +00:00
Update token symbol from PZKW/PZK to HEZ across all components
Changed all references to the project token from PZKW/PZK to HEZ: - DelegationManager.tsx: Updated token symbol in comments, delegate cards, and user delegations - DelegateProfile.tsx: Updated min/max delegation placeholders and display - ProposalWizard.tsx: Updated budget input placeholder and review display - TreasuryOverview.tsx: Updated treasury balance display - TransactionModal.tsx: Updated send transaction title, description, and amount label - WalletButton.tsx: Updated balance display in button and dropdown All components now consistently use HEZ as the token symbol.
This commit is contained in:
@@ -208,7 +208,7 @@ const ProposalWizard: React.FC<ProposalWizardProps> = ({ onComplete, onCancel })
|
||||
type="number"
|
||||
value={proposalData.budget}
|
||||
onChange={(e) => setProposalData({...proposalData, budget: e.target.value})}
|
||||
placeholder="Amount in PZK"
|
||||
placeholder="Amount in HEZ"
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
@@ -308,7 +308,7 @@ const ProposalWizard: React.FC<ProposalWizardProps> = ({ onComplete, onCancel })
|
||||
{proposalData.budget && (
|
||||
<div>
|
||||
<span className="font-semibold">{t('proposals.fields.budget')}:</span>
|
||||
<p className="text-gray-700">{proposalData.budget} PZK</p>
|
||||
<p className="text-gray-700">{proposalData.budget} HEZ</p>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user