Skip to content

Commit

Permalink
Eeplace asterisk with dot
Browse files Browse the repository at this point in the history
  • Loading branch information
vhande committed Jul 4, 2024
1 parent 6cd7cd2 commit b3f0a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/ts/Components/CopyText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const CopyText = ({ text, isSecret }: Props) => {
className="font-mono whitespace-pre text-ellipsis overflow-hidden text-sm text-publiq-orange max-md:max-w-[15rem] max-xl:max-w-[30rem]"
ref={codeFieldRef}
>
{!isSecret || isSecretVisible ? text : "*".repeat(text?.length ?? 36)}
{!isSecret || isSecretVisible ? text : "".repeat(text?.length ?? 36)}
</span>
<Tooltip visible={isVisible} text={t("tooltip.copy")} className="w-auto">
<ButtonIconCopy
Expand Down

0 comments on commit b3f0a54

Please sign in to comment.