feat: hide sign in from the dropdown text

This commit is contained in:
Eli Bosley
2024-12-12 14:58:42 -05:00
parent 478254e134
commit ea6ae83919

View File

@@ -27,7 +27,6 @@ const showErrorIcon = computed(() => errors.value.length || stateData.value.erro
const text = computed((): string => {
if ((stateData.value.error) && state.value !== 'EEXPIRED') { return props.t('Fix Error'); }
if (!registered.value && connectPluginInstalled.value) { return props.t('Sign In'); }
return '';
});