Skip to content

Commit

Permalink
update labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashmi-278 committed Apr 4, 2024
1 parent b1b7fbb commit 1c98ec2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion daostar-website/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ function App() {
junosInstances={daodaoInstances}
osmosisInstances={osmosisInstances}
stargazeInstances={stargazeInstances}
easOptimismGoerli={EASAttestations}
easAttestations={EASAttestations}
/>
}
/>
Expand Down
8 changes: 4 additions & 4 deletions daostar-website/src/components/ExplorePage/ExplorePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const NetworkButtons = [
{ text: "Optimism-Goerli", filter: "optimism-goerli" },
{ text: "Osmosis", filter: "osmosis" },
{ text: "Stargaze", filter: "stargaze" },
{ text: "EAS OPSepolia", filter: "easOptimismGoerli" },
{ text: "EAS", filter: "easAttestations" },

];
NetworkButtons.sort((a, b) => a.text.localeCompare(b.text));
Expand All @@ -62,7 +62,7 @@ const ExplorePage = ({
junosInstances,
osmosisInstances,
stargazeInstances,
easOptimismGoerli
easAttestations
}) => {
const [filterVal, setFilterVal] = useState("");
const onChangeFilter = (e) => setFilterVal(e.target.value);
Expand Down Expand Up @@ -142,8 +142,8 @@ const ExplorePage = ({
.map((registration, i) => (
<RegistrationCard key={i} {...registration} />
));
case "easOptimismGoerli":
return easOptimismGoerli
case "easAttestations":
return easAttestations
.map((attestation, i) => (
<AttestationCard key={i} {...attestation} />
));
Expand Down

0 comments on commit 1c98ec2

Please sign in to comment.