Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-sven committed Dec 11, 2024
1 parent 405ed17 commit da1e738
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import dayjs from 'dayjs';
import { useState, useEffect, useMemo } from "react";
import { useCurrentAddress, useCurrentNetwork, useRoochClient } from '@roochnetwork/rooch-sdk-kit';
import { useMemo, useState, useEffect } from "react";
import { useRoochClient, useCurrentAddress, useCurrentNetwork } from '@roochnetwork/rooch-sdk-kit';

import {
Box,
Card,
Table,
Button,
Tooltip,
TableRow,
TableBody,
TableCell,
Typography, Button
TableCell, Typography
} from "@mui/material";

import { toast } from 'src/components/snackbar';

import { shortAddress } from '../../../utils/address';
import { Scrollbar } from '../../../components/scrollbar';
import { getUTCOffset } from '../../../utils/format-time';
Expand All @@ -21,7 +23,6 @@ import { ROOCH_GAS_COIN_DECIMALS } from '../../../config/constant';
import TableSkeleton from '../../../components/skeleton/table-skeleton';
import { TableNoData, TableHeadCustom } from '../../../components/table';
import { getShareLink, getTwitterShareText } from "../../../utils/inviter";
import { toast } from 'src/components/snackbar';

type ListType = {
address: string
Expand Down
2 changes: 1 addition & 1 deletion infra/rooch-portal-v2/src/sections/settings/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function SettingsView() {
const match = tweetStatus.match(/status\/(\d+)/)

if (!match) {
toast.error('twitter invald')
toast.error('twitter invalid')
return
}
setVerifying(true)
Expand Down

0 comments on commit da1e738

Please sign in to comment.