Skip to content

Commit

Permalink
Rename component to match file
Browse files Browse the repository at this point in the history
  • Loading branch information
wbt committed Oct 22, 2023
1 parent 99a8359 commit 61161cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/components/example-ui/TierList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { TierCard } from "./TierCard";
import { TierSetup } from "./TierSetup";

export const TiersList = (props: { merchant?: string; tiersLength?: bigint }) => {
export const TierList = (props: { merchant?: string; tiersLength?: bigint }) => {
const tiersLength = props.tiersLength;
const merchant = props.merchant;
if (typeof tiersLength == "undefined" || typeof merchant == "undefined") {
Expand Down
4 changes: 2 additions & 2 deletions packages/nextjs/components/example-ui/TierListing.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TiersList } from "./TierList";
import { TierList } from "./TierList";
import { useAccount } from "wagmi";
import {
useScaffoldContract,
Expand Down Expand Up @@ -60,7 +60,7 @@ export const TierListing = () => {
<div className="topRow">
<h2 className="text-4xl">{tierCountText}</h2>
</div>
<TiersList merchant={address} tiersLength={tiersLength} />
<TierList merchant={address} tiersLength={tiersLength} />
</div>
);
};

0 comments on commit 61161cf

Please sign in to comment.