mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-05-24 17:01:09 -04:00
Update version code to 110 and add loading indicator for user dashboard
This commit is contained in:
@@ -11,7 +11,7 @@ android {
|
||||
applicationId "com.compassconnections.app"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 109
|
||||
versionCode 110
|
||||
versionName "1.26.0"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
aaptOptions {
|
||||
|
||||
@@ -217,7 +217,20 @@ export function ProfilesHome() {
|
||||
return (
|
||||
<div className="lg:grid lg:grid-cols-12 lg:gap-4">
|
||||
<Col className={'lg:col-span-9'}>
|
||||
{showSignupBanner && (
|
||||
{!user && (
|
||||
<Col className="items-center justify-center min-h-[60vh] gap-6 text-center">
|
||||
<div className="animate-spin rounded-full h-14 w-14 border-4 border-primary-500 border-t-transparent" />
|
||||
<div className="flex flex-col gap-2">
|
||||
<h2 className="text-2xl font-semibold">
|
||||
{t('profiles.loading_dashboard', 'Loading dashboard…')}
|
||||
</h2>
|
||||
<p className="text-ink-500 max-w-sm">
|
||||
{t('profiles.loading_dashboard_desc', 'Hang tight while we set things up for you.')}
|
||||
</p>
|
||||
</div>
|
||||
</Col>
|
||||
)}
|
||||
{showSignupBanner && user && (
|
||||
<div className="w-full bg-canvas-100 rounded text-center py-3 px-3 relative">
|
||||
<Col className="items-center justify-center gap-2">
|
||||
<span className={'mb-2'}>
|
||||
|
||||
Reference in New Issue
Block a user