Skip to content

Commit

Permalink
fix: update cli ethers and subgraph templates (#835)
Browse files Browse the repository at this point in the history
fix: fix cli ethers and subgraph templates
  • Loading branch information
vplasencia authored Jul 25, 2024
1 parent b5f8ee7 commit d54d673
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default function GroupsPage() {
<div>
{_users.map((user, i) => (
<div key={i}>
<p className="box box-text">{user}</p>
<p className="box box-text">{user.toString()}</p>
</div>
))}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function PageContainer({
useEffect(() => {
semaphore.refreshUsers()
semaphore.refreshFeedback()
}, [semaphore])
}, [])

function getExplorerLink(network: SupportedNetwork, address: string) {
switch (network) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default function GroupsPage() {
<div>
{_users.map((user, i) => (
<div key={i}>
<p className="box box-text">{user}</p>
<p className="box box-text">{user.toString()}</p>
</div>
))}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function PageContainer({
useEffect(() => {
semaphore.refreshUsers()
semaphore.refreshFeedback()
}, [semaphore])
}, [])

function getExplorerLink(network: SupportedNetwork, address: string) {
switch (network) {
Expand Down

0 comments on commit d54d673

Please sign in to comment.