We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc924f6 commit 1894e10Copy full SHA for 1894e10
2 files changed
apps/api/src/media/storage-middleware.ts
@@ -25,7 +25,6 @@ export default async function storageValidation(
25
totalSpaceOccupied + (req.files?.file as any).size >
26
maxStorageAllowed
27
) {
28
- console.log("totalSpaceOccupied", totalSpaceOccupied);
29
return res.status(400).json({
30
error: "You do not have enough storage space in your account to upload this file",
31
});
apps/web/components/nav-bar/index.tsx
@@ -46,6 +46,9 @@ export async function NavBar() {
46
width={32}
47
/>
48
{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>
52
</Link>
53
<ul className="hidden md:flex md:gap-4">
54
{navlinks.map((link) => (
0 commit comments