Skip to content

Commit

Permalink
fix: tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
albertfolch-redeemeum committed Oct 18, 2024
1 parent 0b4bab9 commit 5b598dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/offers/OfferList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { useKeepQueryParamsNavigate } from "../../lib/utils/hooks/useKeepQueryPa
import { useIsCustomStoreValueChanged } from "../../pages/custom-store/useIsCustomStoreValueChanged";
import { ExtendedOffer } from "../../pages/explore/WithAllOffers";
import { ProductGridContainer } from "../../pages/profile/ProfilePage.styles";
import { Action } from "../../pages/profile/seller/const";
import Breadcrumbs from "../breadcrumbs/Breadcrumbs";
import { Action } from "../offer/OfferCard";
import ProductCard from "../productCard/ProductCard";
import { Grid } from "../ui/Grid";
import { ItemsPerRow } from "../ui/GridContainer";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/profile/seller/Offers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useMemo } from "react";
import OfferList from "../../../components/offers/OfferList";
import { Profile } from "../../../lib/utils/hooks/lens/graphql/generated";
import { ExtendedSeller } from "../../explore/WithAllOffers";
export type Action = "commit" | "redeem" | "contact-seller" | null;
import { Action } from "./const";

interface Props {
products: ExtendedSeller;
Expand Down
1 change: 1 addition & 0 deletions src/pages/profile/seller/const.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export type Action = "commit" | "redeem" | "contact-seller" | null;

0 comments on commit 5b598dd

Please sign in to comment.