Skip to content

Commit ec0186c

Browse files
committed
remove unused stuff
1 parent 3edbf57 commit ec0186c

8 files changed

Lines changed: 4 additions & 75 deletions

File tree

app/(operations)/components/operations-ui/constants.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ export const commonOpertationsGasLimit = 60_000_000;
99
export const commonBuiltInOpertationsGasLimit = 6_000_000;
1010
export const nftSftCreateOpertationsGasLimit = 3_000_000;
1111
export const specialOpertationsGasLimit = 300_000;
12-
// TODO: this should come from TransferTransactionsFactory and GasEstimator, waits for useElven changes
13-
export const transfersOperationsGasLimit = 600_000;
1412

1513
export interface TokenPropertyOrRole {
1614
name: string;

app/(operations)/components/operations-ui/operations-submit-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type ButtonComponent = {
1717
pending?: boolean;
1818
};
1919

20-
export const ButtonComponent = ({
20+
const ButtonComponent = ({
2121
label,
2222
formId,
2323
disabled,

components/elven-ui/protected-page-wrapper.tsx

Lines changed: 0 additions & 36 deletions
This file was deleted.

hooks/use-creator-tokens-amount.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const useAccountTokensTypes = [
88
'meta',
99
] as const;
1010

11-
export type AccountTokens = {
11+
type AccountTokens = {
1212
tokenType: (typeof useAccountTokensTypes)[number];
1313
onlyOwner?: boolean;
1414
txFinalized?: boolean;

hooks/use-creator-tokens.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const useAccountTokensTypes = [
99
'meta',
1010
] as const;
1111

12-
export type AccountTokens = {
12+
type AccountTokens = {
1313
tokenType: (typeof useAccountTokensTypes)[number];
1414
txFinalized?: boolean;
1515
};

hooks/use-token-roles-by-account.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const useAccountTokensTypes = [
88
'meta',
99
] as const;
1010

11-
export type AccountTokens = {
11+
type AccountTokens = {
1212
tokenType: (typeof useAccountTokensTypes)[number];
1313
tokenId: string;
1414
address: string;

package-lock.json

Lines changed: 0 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"@radix-ui/react-dropdown-menu": "2.0.6",
2929
"@radix-ui/react-label": "2.0.2",
3030
"@radix-ui/react-radio-group": "1.1.3",
31-
"@radix-ui/react-scroll-area": "1.0.5",
3231
"@radix-ui/react-select": "2.0.0",
3332
"@radix-ui/react-separator": "1.0.3",
3433
"@radix-ui/react-slot": "1.0.2",

0 commit comments

Comments
 (0)