Skip to content

Commit 73d4b2b

Browse files
committed
feat: fixed signer id page
1 parent 4c522df commit 73d4b2b

File tree

78 files changed

+628
-678
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+628
-678
lines changed

next.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ const nextConfig = {
3030
experimental: {
3131
optimizePackageImports: ['@chakra-ui/react'],
3232
},
33+
images: {
34+
domains: ['assets.hiro.so'],
35+
},
3336
};
3437

3538
module.exports = withSentryConfig(withBundleAnalyzer(nextConfig), {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
"version": "1.0.0",
2626
"author": "Hiro Systems PBC (formerly Blockstack PBC)",
2727
"dependencies": {
28-
"@chakra-ui/anatomy": "2.2.2",
29-
"@chakra-ui/react": "latest",
28+
"@chakra-ui/anatomy": "2.3.4",
29+
"@chakra-ui/react": "3.2.3",
3030
"@chakra-ui/theme-tools": "2.1.2",
3131
"@contentful/rich-text-react-renderer": "15.21.2",
3232
"@contentful/rich-text-types": "16.5.2",

pnpm-lock.yaml

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

src/app/PageClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export function HomePageLayout({
5050

5151
const Home: NextPage = () => {
5252
const { activeNetwork } = useGlobalContext();
53-
53+
5454
return (
5555
<HomePageLayout
5656
title={<PageTitle data-test="homepage-title">Stacks Explorer</PageTitle>}

src/app/_components/AppConfig.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use client';
22

3+
import { Box } from '@chakra-ui/react';
34
import React, { useEffect } from 'react';
45
import toast from 'react-hot-toast';
56

@@ -9,7 +10,6 @@ import { useAppSelector } from '../../common/state/hooks';
910
import { NetworkMode } from '../../common/types/network';
1011
import { Text } from '../../ui/Text';
1112
import { selectUserSession } from '../sandbox/sandbox-slice';
12-
import { Box } from '@chakra-ui/react';
1313

1414
export const AppConfig: React.FC<{
1515
queryNetworkMode: NetworkMode;

src/app/_components/BlockList/Grouped/BlockListGrouped.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,10 @@ export function BurnBlockGroupGrid({
212212
isLast={i === stxBlocksToDisplay.length - 1 && numStxBlocksNotDisplayed <= 0}
213213
/>
214214
{i < stxBlocksToDisplay.length - 1 && (
215-
<Box gridColumn={'1/5'} borderBottom={'1px solid var(--stacks-colors-border-secondary)'}></Box>
215+
<Box
216+
gridColumn={'1/5'}
217+
borderBottom={'1px solid var(--stacks-colors-border-secondary)'}
218+
></Box>
216219
)}
217220
</React.Fragment>
218221
))}

src/app/_components/BlockList/Grouped/skeleton.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ export function UpdateBarSkeleton() {
179179
}
180180

181181
export function BlocksPageBlockListSkeleton() {
182-
return ( // TODO: fix this loading state
182+
return (
183+
// TODO: fix this loading state
183184
<BlocksPageBlockListLayout>
184185
<BlocksPageControlsSkeleton horizontal />
185186
<UpdateBarSkeleton />

src/app/_components/BlockList/HomePage/HomePageBlockList.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,14 @@ export function HomePageControlsLayout({
4545
children: ReactNode;
4646
}) {
4747
return (
48-
<Stack gap={3} pb={6} marginX={-6} px={6} py={5} borderBottom={liveUpdates ? '1px solid var(--stacks-colors-border-secondary)' : 'none'}>
48+
<Stack
49+
gap={3}
50+
pb={6}
51+
marginX={-6}
52+
px={6}
53+
py={5}
54+
borderBottom={liveUpdates ? '1px solid var(--stacks-colors-border-secondary)' : 'none'}
55+
>
4956
{children}
5057
</Stack>
5158
);

src/app/_components/BlockList/HomePage/HomePageBlockListUngrouped.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { Suspense, useMemo } from 'react';
55

66
import { ListFooter } from '../../../../common/components/ListFooter';
77
import { useBlockListContext } from '../BlockListContext';
8+
import { BlockListUngrouped } from '../Ungrouped/BlockListUngrouped';
89
import { HomePageBlockListUngroupedSkeleton } from '../Ungrouped/skeleton';
910
import { UpdateBar } from '../UpdateBar';
1011
import { useHomePageBlockList } from '../data/useHomePageBlockList';
11-
import { BlockListUngrouped } from '../Ungrouped/BlockListUngrouped';
1212

1313
function HomePageBlockListUngroupedBase() {
1414
const { liveUpdates } = useBlockListContext();

src/app/_components/BlockList/Ungrouped/BlockListUngrouped.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,10 @@ function StxBlocksGrid({
310310
isLast={i === stxBlocksToDisplay.length - 1 && numStxBlocksNotDisplayed <= 0}
311311
/>
312312
{i < stxBlocksToDisplay.length - 1 && (
313-
<Box gridColumn={'1/5'} borderBottom={`1px solid var(--stacks-colors-border-secondary)`}></Box>
313+
<Box
314+
gridColumn={'1/5'}
315+
borderBottom={`1px solid var(--stacks-colors-border-secondary)`}
316+
></Box>
314317
)}
315318
</React.Fragment>
316319
))}

0 commit comments

Comments
 (0)