fix(userlinkedaccountssettings): use correct button style for dropdown

This commit is contained in:
Michael Thomas
2025-08-02 10:46:51 -04:00
parent ab3c8e4e7e
commit be5ee1e980

View File

@@ -235,7 +235,7 @@ const UserLinkedAccountsSettings = () => {
<div>
<Dropdown text="Link Account" buttonType="ghost">
{linkable.map(({ name, action }) => (
<Dropdown.Item key={name} onClick={action}>
<Dropdown.Item key={name} onClick={action} buttonType="ghost">
{name}
</Dropdown.Item>
))}