diff --git a/services/web/frontend/js/features/settings/components/linking/integration-widget.tsx b/services/web/frontend/js/features/settings/components/linking/integration-widget.tsx
index 82eeedd6fb..9a317efd4f 100644
--- a/services/web/frontend/js/features/settings/components/linking/integration-widget.tsx
+++ b/services/web/frontend/js/features/settings/components/linking/integration-widget.tsx
@@ -104,7 +104,13 @@ function ActionButton({
disabled,
}: ActionButtonProps) {
const { t } = useTranslation()
-
+ const classNames = require('classnames')
+ const classes = classNames(
+ 'btn',
+ 'btn-secondary-info',
+ 'btn-secondary',
+ 'text-capitalize'
+ )
if (!hasFeature) {
return (
+ <>
+ {disabled ? (
+
+ ) : (
+
+ {t('link')}
+
+ )}
+ >
)
}
}