[xc-admin-frontend] Rename title for clarification (#973)

We only check for pyth oracle programs addresses not all pyth programs,
the name was misleading
This commit is contained in:
Mohammad Amin Khashkhashi Moghaddam 2023-07-24 10:51:05 +02:00 committed by GitHub
parent 59d8742da3
commit 4c69764b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -429,10 +429,10 @@ const Proposal = ({
<div className="col-span-3 my-2 space-y-4 bg-[#1E1B2F] p-4">
<h4 className="h4 font-semibold">
{uniqueTargetCluster
? `Target Pyth Program: ${targetClusters[0]}`
? `Target Pyth oracle program: ${targetClusters[0]}`
: targetClusters.length == 0
? 'No target Pyth program detected'
: `Multiple target Pyth programs detected ${targetClusters.join(
? 'No target Pyth oracle program detected'
: `Multiple target Pyth oracle programs detected ${targetClusters.join(
' '
)}`}
</h4>