Compare commits

..

No commits in common. "ai-dev" and "master" have entirely different histories.

4 changed files with 14 additions and 19 deletions

5
.gitignore vendored
View File

@ -1,8 +1,3 @@
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

@ -1 +0,0 @@
{}

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='success' color='info'
disabled={isFetching} disabled={isFetching}
/> />
</BaseButtons> </BaseButtons>