Skip to content

Commit 1894e10

Browse files
committed
Added beta tag
1 parent cc924f6 commit 1894e10

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

apps/api/src/media/storage-middleware.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export default async function storageValidation(
2525
totalSpaceOccupied + (req.files?.file as any).size >
2626
maxStorageAllowed
2727
) {
28-
console.log("totalSpaceOccupied", totalSpaceOccupied);
2928
return res.status(400).json({
3029
error: "You do not have enough storage space in your account to upload this file",
3130
});

apps/web/components/nav-bar/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ export async function NavBar() {
4646
width={32}
4747
/>
4848
{SITE_NAME}
49+
<span className="px-1.5 py-0.5 text-[10px] font-medium rounded-sm border border-gray-300 text-gray-500 leading-none inline-flex items-center">
50+
Beta
51+
</span>
4952
</Link>
5053
<ul className="hidden md:flex md:gap-4">
5154
{navlinks.map((link) => (

0 commit comments

Comments
 (0)