Skip to content

Commit

Permalink
fix: remove unused exports
Browse files Browse the repository at this point in the history
  • Loading branch information
VishalRakholiya-iView committed Jan 19, 2024
1 parent 9623b91 commit e8287a5
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import {
import { layout } from "../../utils/style/layout";

const MD_BREAKPOINT = 820;
export type TabsListType = "pendingApllications" | "pendingConfirmations";
export type SecTabsListType =
type TabsListType = "pendingApllications" | "pendingConfirmations";
type SecTabsListType =
| "highlightedNewsHero"
| "upcomingProjectsCarousel"
| "liveSaleinProgress";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ import { neutral33 } from "../../utils/style/colors";
import { fontSemibold20, fontSemibold28 } from "../../utils/style/fonts";
import { layout } from "../../utils/style/layout";

export type TabsListType =
| "all"
| "verified"
| "ethereum"
| "solana"
| "cosmos";
type TabsListType = "all" | "verified" | "ethereum" | "solana" | "cosmos";

const dummyData = [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { neutral33 } from "../../utils/style/colors";
import { fontSemibold20, fontSemibold28 } from "../../utils/style/fonts";
import { layout } from "../../utils/style/layout";

export type TabsListType = "pendingApllications" | "pendingConfirmations";
type TabsListType = "pendingApllications" | "pendingConfirmations";

const dummyData = {
rank: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ import {
screenContentMaxWidthLarge,
} from "../../../utils/style/layout";

export type TabsListType = "pendingApllications" | "pendingConfirmations";

const TABLE_ROWS = {
rank: {
label: "#",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { neutral33 } from "../../utils/style/colors";
import { fontSemibold20, fontSemibold28 } from "../../utils/style/fonts";
import { layout } from "../../utils/style/layout";

export type TabsListType = "readyForListing" | "waitingForApproval";
type TabsListType = "readyForListing" | "waitingForApproval";

const dummyData = {
rank: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import {
screenContentMaxWidthLarge,
} from "../../../utils/style/layout";

export type TabsListType = "readyForListing" | "waitingForApproval";

const TABLE_ROWS = {
rank: {
label: "#",
Expand Down

0 comments on commit e8287a5

Please sign in to comment.