AwsMarketplaceAutoRenewalWarning() — supabase Function Reference
Architecture documentation for the AwsMarketplaceAutoRenewalWarning() function in AwsMarketplaceAutoRenewalWarning.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Organization/CloudMarketplace/AwsMarketplaceAutoRenewalWarning.tsx lines 10–35
const AwsMarketplaceAutoRenewalWarning = ({
awsContractEndDate,
awsContractSettingsUrl,
}: Props) => {
return (
<div className="mt-5 mb-10">
<Alert_Shadcn_ variant="warning">
<AlertTitle_Shadcn_ className="text-foreground font-bold text-orange-1000">
“Auto Renewal” is turned OFF for your AWS Marketplace subscription
</AlertTitle_Shadcn_>
<AlertDescription_Shadcn_ className="flex flex-col gap-3 break-words">
<div>
As a result, your Supabase organization will be downgraded to the Free Plan on{' '}
{dayjs(awsContractEndDate).format('MMMM DD')}. If you have more than 2 projects running,
all your projects will be paused. To ensure uninterrupted service, enable “Auto Renewal”
in your {''}
<Link href={awsContractSettingsUrl} target="_blank" className="underline">
AWS Marketplace subscription settings
</Link>
.
</div>
</AlertDescription_Shadcn_>
</Alert_Shadcn_>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free