fix: pro pricing button

This commit is contained in:
Ben Allfree 2023-12-11 20:48:08 -08:00
parent 01de597bbb
commit 2fab80352d

View File

@ -55,7 +55,7 @@
{:else if prices.length > 0} {:else if prices.length > 0}
<div class="card-actions justify-center"> <div class="card-actions justify-center">
{#each prices as price} {#each prices as price}
{#if limit === 0 || !upgradable} {#if (startLimit > 0 && limit === 0) || !upgradable}
<button class="btn btn-primary" disabled>{price.title}</button> <button class="btn btn-primary" disabled>{price.title}</button>
{:else} {:else}
<a class="btn btn-primary" href={price.link} target="_blank" <a class="btn btn-primary" href={price.link} target="_blank"