unused backgroundColor

This commit is contained in:
GleidsonDaniel 2024-03-27 11:30:59 -03:00
parent b19065f706
commit 336813449b
1 changed files with 1 additions and 7 deletions

View File

@ -82,13 +82,7 @@ const WorkspaceView = () => {
</View>
{showLoginButton ? <Button title={I18n.t('Login')} type='primary' onPress={login} testID='workspace-view-login' /> : null}
{showRegistrationButton ? (
<Button
title={I18n.t('Create_account')}
type='secondary'
backgroundColor={colors.surfaceTint}
onPress={register}
testID='workspace-view-register'
/>
<Button title={I18n.t('Create_account')} type='secondary' onPress={register} testID='workspace-view-register' />
) : (
<RegisterDisabledComponent />
)}