Add the possibility to enable/disable default OAuths (#303)

This commit is contained in:
Riccardo Graziosi
2024-03-05 18:13:16 +01:00
committed by GitHub
parent 719f1ad4e9
commit 32d19cbe7c
31 changed files with 508 additions and 131 deletions

View File

@@ -3,6 +3,7 @@ import I18n from 'i18n-js';
import { useState } from 'react';
import ActionLink from './ActionLink';
import { CopyIcon, DoneIcon } from './Icons';
import { SuccessText } from './CustomTexts';
interface Props {
label: string;
@@ -40,7 +41,7 @@ const CopyToClipboardButton = ({
</ActionLink>
:
<span style={{display: 'flex', marginRight: 12}}>
{copiedLabel}
<SuccessText>{copiedLabel}</SuccessText>
</span>
);
};