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/
*/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
className={'w-full'}
type='submit'
label={
isFetching
? t('pages.login.form.loading', {
defaultValue: 'Loading...',
})
: `đź”’ ${t('pages.login.form.loginButton', {
defaultValue: 'Login',
})} âś…`
}
color='success'
label={
isFetching
? t('pages.login.form.loading', {
defaultValue: 'Loading...',
})
: t('pages.login.form.loginButton', {
defaultValue: 'Login',
})
}
color='info'
disabled={isFetching}
/>
</BaseButtons>