Skip to content

Commit

Permalink
fix: wording of lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
avp1598 committed Apr 4, 2023
1 parent f4c4dc7 commit 556abe1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions app/modules/Collection/Form/DataDrawer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -499,9 +499,9 @@ export default function DataDrawer({
)}
{collection.data?.[dataId]?.["__lookup__"] && (
<Stack space="1">
<Text weight="semiBold" variant="large" color="accent">
Lookup
</Text>
{/* <Text weight="semiBold" variant="large" color="accent">
On Chain token balance
</Text> */}
<Stack direction="horizontal" wrap space="2">
{collection.data?.[dataId]?.["__lookup__"].map(
(token: any) => (
Expand Down
9 changes: 2 additions & 7 deletions app/modules/Plugins/responderProfile/AddLookup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,14 +178,9 @@ const AddLookup = ({ lookupTokens, setLookupTokens }: Props) => {

return (
<Box>
<Box width="40">
<Box width="44">
<PrimaryButton variant="tertiary" onClick={() => setOpen(true)}>
<Text color="accent">
<Stack direction="horizontal" align="center" space="2">
<IconPlusSmall size="4" />
Add lookup
</Stack>
</Text>
<Text color="accent">Add token lookup</Text>
</PrimaryButton>
</Box>
<AnimatePresence>
Expand Down
8 changes: 6 additions & 2 deletions app/modules/Plugins/responderProfile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,17 @@ export default function ResponderProfile({ handleClose }: Props) {
return (
<Modal title="Responder Profile" handleClose={handleClose}>
<Box padding="8">
<Box marginBottom="4">
<Box marginBottom="16">
{/* <Text variant="base">
Enabling this plugin will automatically collect responders'
profiles.{" "}
</Text> */}
<Stack>
<Stack space="2">
<Text variant="label">On Chain data lookup</Text>
<Text size="extraSmall">
You can optionally get the on chain token balance of the responder
along with their profile
</Text>
<Stack direction="horizontal" wrap space="2">
{lookupTokens.map((token, i) => (
<Box
Expand Down

0 comments on commit 556abe1

Please sign in to comment.