Skip to content

Commit

Permalink
Copy tweaks on transaction history (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
musidlo authored Dec 19, 2024
1 parent 4e0737c commit 04568ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/next/pages/[tag].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const getServerSideProps = (async (ctx: GetServerSidePropsContext) => {

Page.getLayout = (children) => (
<MobileButtonRowLayout.Profile>
<HomeLayout TopNav={<TopNav header="Profile" backFunction="router" />}>{children}</HomeLayout>
<HomeLayout TopNav={<TopNav header="History" backFunction="router" />}>{children}</HomeLayout>
</MobileButtonRowLayout.Profile>
)

Expand Down
2 changes: 1 addition & 1 deletion apps/next/pages/profile/[sendid].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const getServerSideProps = (async (ctx: GetServerSidePropsContext) => {

Page.getLayout = (children) => (
<MobileButtonRowLayout.Profile>
<HomeLayout TopNav={<TopNav header="Profile" backFunction="router" />}>{children}</HomeLayout>
<HomeLayout TopNav={<TopNav header="History" backFunction="router" />}>{children}</HomeLayout>
</MobileButtonRowLayout.Profile>
)

Expand Down
2 changes: 1 addition & 1 deletion packages/app/features/profile/screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ const ProfileInfo = ({
<YStack w={'100%'} gap={'$4'} pb={'$4'}>
<YStack w={'100%'} bg={'$color1'} borderRadius={'$6'} padding={'$5'} gap={'$4'}>
<XStack ai="center" jc="space-between">
<Paragraph size={'$8'}>Profile</Paragraph>
<Paragraph size={'$8'}>About</Paragraph>
<Stack onPress={onClose} cursor={'pointer'}>
<IconX
size={'$1.5'}
Expand Down

0 comments on commit 04568ff

Please sign in to comment.