completionId: cgen-08ade34c7dec48b1b5b7cbda1cc3089a
cgen-08ade34c7dec48b1b5b7cbda1cc3089a
This commit is contained in:
parent
5485386f7f
commit
eb46949380
1 changed files with 5 additions and 3 deletions
|
|
@ -134,13 +134,14 @@ const OAuthConnections = memo(function OAuthConnections({
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-3 md:self-center">
|
<div className="flex items-center gap-3 md:self-center pointer-events-auto">
|
||||||
{linkedMeta ? (
|
{linkedMeta ? (
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className="flex items-center gap-2"
|
className="flex items-center gap-2 pointer-events-auto cursor-pointer"
|
||||||
disabled={isUnlinking}
|
disabled={isUnlinking}
|
||||||
onClick={() => onUnlink(provider)}
|
onClick={() => onUnlink(provider)}
|
||||||
|
type="button"
|
||||||
>
|
>
|
||||||
{isUnlinking ? (
|
{isUnlinking ? (
|
||||||
<Loader2
|
<Loader2
|
||||||
|
|
@ -154,9 +155,10 @@ const OAuthConnections = memo(function OAuthConnections({
|
||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
<Button
|
<Button
|
||||||
className="flex items-center gap-2 bg-aethex-500 hover:bg-aethex-600"
|
className="flex items-center gap-2 bg-aethex-500 hover:bg-aethex-600 pointer-events-auto cursor-pointer"
|
||||||
disabled={isLinking}
|
disabled={isLinking}
|
||||||
onClick={() => onLink(provider)}
|
onClick={() => onLink(provider)}
|
||||||
|
type="button"
|
||||||
>
|
>
|
||||||
{isLinking ? (
|
{isLinking ? (
|
||||||
<Loader2
|
<Loader2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue