Skip to content

Commit 46c4ccf

Browse files
Update packages/web/app/src/components/ui/input-copy.tsx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent d7c1b42 commit 46c4ccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web/app/src/components/ui/input-copy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function InputCopy(props: { value: string; alignment?: 'center' | 'left'
3131
type="text"
3232
value={props.value}
3333
readOnly
34-
className={`bg-secondary truncate text-white${props.alignment === 'center' ? 'text-center' : ''}`}
34+
className={`bg-secondary truncate text-white ${props.alignment === 'center' ? 'text-center' : ''}`}
3535
onFocus={ev => ev.target.select()}
3636
/>
3737
</div>

0 commit comments

Comments
 (0)