Skip to content

Commit c423ea1

Browse files
committed
fix position
1 parent 3b6d880 commit c423ea1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

components/dashboard/src/admin/License.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ export default function License() {
8080
target="_blank"
8181
>
8282
<span>Compare Plans</span>
83-
<LinkSvg />
83+
<div className="self-end">
84+
<LinkSvg />
85+
</div>
8486
</a>
8587
</SolidCard>
8688
</div>
@@ -160,7 +162,7 @@ function professionalPlan(userCount: number, seats: number, trial: boolean, vali
160162
if (typeof expDate.getTime !== "function") {
161163
return trial ? additionalLicenseInfo("Trial") : additionalLicenseInfo("Paid");
162164
} else {
163-
return additionalLicenseInfo("Expires on " + expDate.toLocaleDateString());
165+
return additionalLicenseInfo("Expires on " + expDate.toDateString());
164166
}
165167
};
166168

0 commit comments

Comments
 (0)