Compare commits

...

1 Commits

Author SHA1 Message Date
Flatlogic Bot
28de0dc2a0 Login btn 2025-06-11 15:55:20 +00:00
4 changed files with 19 additions and 14 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -316,16 +316,16 @@ export default function Login() {
<BaseButton <BaseButton
className={'w-full'} className={'w-full'}
type='submit' type='submit'
label={ label={
isFetching isFetching
? t('pages.login.form.loading', { ? t('pages.login.form.loading', {
defaultValue: 'Loading...', defaultValue: 'Loading...',
}) })
: t('pages.login.form.loginButton', { : `đź”’ ${t('pages.login.form.loginButton', {
defaultValue: 'Login', defaultValue: 'Login',
}) })} âś…`
} }
color='info' color='success'
disabled={isFetching} disabled={isFetching}
/> />
</BaseButtons> </BaseButtons>