diff --git a/apps/artboard/src/templates/azurill.tsx b/apps/artboard/src/templates/azurill.tsx index 9ea526ae7..29a3de91c 100644 --- a/apps/artboard/src/templates/azurill.tsx +++ b/apps/artboard/src/templates/azurill.tsx @@ -241,7 +241,7 @@ const Profiles = () => { ) : (
{item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/bronzor.tsx b/apps/artboard/src/templates/bronzor.tsx index dddc71b26..fd068319f 100644 --- a/apps/artboard/src/templates/bronzor.tsx +++ b/apps/artboard/src/templates/bronzor.tsx @@ -218,7 +218,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/chikorita.tsx b/apps/artboard/src/templates/chikorita.tsx index ca278f396..a6690607f 100644 --- a/apps/artboard/src/templates/chikorita.tsx +++ b/apps/artboard/src/templates/chikorita.tsx @@ -264,7 +264,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/ditto.tsx b/apps/artboard/src/templates/ditto.tsx index 208691305..0053609fd 100644 --- a/apps/artboard/src/templates/ditto.tsx +++ b/apps/artboard/src/templates/ditto.tsx @@ -245,7 +245,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/gengar.tsx b/apps/artboard/src/templates/gengar.tsx index 487f58d93..dedea01d7 100644 --- a/apps/artboard/src/templates/gengar.tsx +++ b/apps/artboard/src/templates/gengar.tsx @@ -214,7 +214,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/glalie.tsx b/apps/artboard/src/templates/glalie.tsx index 73e2f9032..e57a4a359 100644 --- a/apps/artboard/src/templates/glalie.tsx +++ b/apps/artboard/src/templates/glalie.tsx @@ -269,7 +269,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/nosepass.tsx b/apps/artboard/src/templates/nosepass.tsx index 76a79e727..5ccf0c222 100644 --- a/apps/artboard/src/templates/nosepass.tsx +++ b/apps/artboard/src/templates/nosepass.tsx @@ -263,7 +263,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/pikachu.tsx b/apps/artboard/src/templates/pikachu.tsx index ddab1f62e..b1040fe27 100644 --- a/apps/artboard/src/templates/pikachu.tsx +++ b/apps/artboard/src/templates/pikachu.tsx @@ -245,7 +245,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/artboard/src/templates/rhyhorn.tsx b/apps/artboard/src/templates/rhyhorn.tsx index 230b38e4f..1d3164b21 100644 --- a/apps/artboard/src/templates/rhyhorn.tsx +++ b/apps/artboard/src/templates/rhyhorn.tsx @@ -217,7 +217,7 @@ const Profiles = () => { ) : ({item.username}
)} -{item.network}
+ {!item.icon &&{item.network}
} )} diff --git a/apps/client/index.html b/apps/client/index.html index a8d4153de..bdfca8c4f 100644 --- a/apps/client/index.html +++ b/apps/client/index.html @@ -35,10 +35,13 @@ - + + + + diff --git a/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx b/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx index 3998f1623..5b2eaf4d5 100644 --- a/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx +++ b/apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx @@ -1,8 +1,15 @@ import { t } from "@lingui/macro"; import { createId } from "@paralleldrive/cuid2"; -import { DotsSixVertical, Plus, X } from "@phosphor-icons/react"; +import { DotsSixVertical, Envelope, Plus, X } from "@phosphor-icons/react"; import { CustomField as ICustomField } from "@reactive-resume/schema"; -import { Button, Input } from "@reactive-resume/ui"; +import { + Popover, + PopoverContent, + PopoverTrigger, + Tooltip, + Button, + Input, +} from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; import { AnimatePresence, Reorder, useDragControls } from "framer-motion"; @@ -42,6 +49,23 @@ export const CustomField = ({ field, onChange, onRemove }: CustomFieldProps) =>