- |
- {marketContractValues.market.description}
- |
-
-
- |
-
- {getOutcomeTokensPosition()}
- |
-
-
- {!bettingPeriodExpired() ? : "—"}
-
- |
-
-
- {marketContractValues.isResolved ? "resolved" : "unresolved"}
-
- |
-
-
- See details
-
- |
-
- );
-};
diff --git a/app/src/app/home/latest-price-markets-table/price-market-table-row/PriceMarketTableRow.types.ts b/app/src/app/home/latest-price-markets-table/price-market-table-row/PriceMarketTableRow.types.ts
deleted file mode 100644
index 0517de82..00000000
--- a/app/src/app/home/latest-price-markets-table/price-market-table-row/PriceMarketTableRow.types.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { ReactNode } from "react";
-
-import { AccountId } from "providers/near/contracts/market/market.types";
-
-export type PriceMarketTableRowProps = {
- marketId: AccountId;
- children?: ReactNode;
- className?: string;
-};
diff --git a/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.module.scss b/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.module.scss
deleted file mode 100644
index 79eb77be..00000000
--- a/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.module.scss
+++ /dev/null
@@ -1,32 +0,0 @@
-@import "src/theme/base";
-
-.outcome-tokens-position {
- display: block;
-
- &__card {
- margin-bottom: $space-default;
- background-color: var(--color-market-card-background-contrast);
-
- &--content {
- padding-top: $space-default;
- padding-bottom: $space-default;
- }
- }
-
- &__row {
- display: flex;
- justify-content: space-between;
- margin-right: -$space-default;
- margin-left: -$space-default;
-
- &:nth-child(odd) {
- background-color: var(--color-background-contrast);
- }
- }
-
- &__col {
- padding: $space-xs $space-default;
- text-transform: capitalize;
- color: var(--color-typography-text);
- }
-}
diff --git a/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.module.scss.d.ts b/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.module.scss.d.ts
deleted file mode 100644
index 870303d2..00000000
--- a/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.module.scss.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-export type Styles = {
- "outcome-tokens-position": string;
- "outcome-tokens-position__card": string;
- "outcome-tokens-position__card--content": string;
- "outcome-tokens-position__col": string;
- "outcome-tokens-position__row": string;
- "z-depth-0": string;
- "z-depth-1": string;
- "z-depth-1-half": string;
- "z-depth-2": string;
- "z-depth-3": string;
- "z-depth-4": string;
- "z-depth-5": string;
-};
-
-export type ClassNames = keyof Styles;
-
-declare const styles: Styles;
-
-export default styles;
diff --git a/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.test.tsx b/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.test.tsx
deleted file mode 100644
index 36ed4d6e..00000000
--- a/app/src/app/market/outcome-tokens-position/OutcomeTokensPosition.test.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import { screen, render } from "tests";
-
-import { OutcomeTokensPosition } from "./OutcomeTokensPosition";
-
-describe("OutcomeTokensPosition", () => {
- it("renders children correctly", () => {
- render(