diff --git a/src/lib/images/pro_tier_logo.png b/src/lib/images/life_time_access_logo.png
similarity index 100%
rename from src/lib/images/pro_tier_logo.png
rename to src/lib/images/life_time_access_logo.png
diff --git a/src/routes/community/profile/+page.server.ts b/src/routes/community/profile/+page.server.ts
index 9c9be189..2f8e05a2 100644
--- a/src/routes/community/profile/+page.server.ts
+++ b/src/routes/community/profile/+page.server.ts
@@ -13,7 +13,7 @@ export const load = async ({ locals}) => {
}))?.at(0)?.data?.data?.attributes ?? {} ;
//console.log(output)
-
+
return output;
};
diff --git a/src/routes/community/profile/+page.svelte b/src/routes/community/profile/+page.svelte
index 110ea584..d6730999 100644
--- a/src/routes/community/profile/+page.svelte
+++ b/src/routes/community/profile/+page.svelte
@@ -923,7 +923,11 @@ onDestroy(async () => {
Current Plan:
+ {#if subscriptionData?.first_order_item?.product_name === 'Pro Subscription (Life Time Access)'}
+ Life Time Access
+ {:else}
{['Active', 'Paid', 'On Trial', 'Cancelled']?.includes(subscriptionData?.status_formatted) ? subscriptionData?.product_name : data?.user?.freeTrial === true ? 'Free Trial Subscription' : 'Free Subscription'}
+ {/if}
{subscriptionData?.product_name?.includes('Monthly') ? '$49.99 billed every month' : '$499 billed every year'}
@@ -932,11 +936,11 @@ onDestroy(async () => {
{#if subscriptionData?.status_formatted === 'Active' || subscriptionData?.status_formatted === 'On Trial'}
-
-