Skip to content
This repository was archived by the owner on Jun 7, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/server/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import * as express from 'express';
import { join } from 'path';

async function bootstrap() {
var esnlintTest;

const app = await NestFactory.create(AppModule, { cors: false });

app.use('/uploads', express.static(join(__dirname, '..', 'uploads'))); // https://loclahost:5173/uploads/avatars/* -> will show the image because of this
Expand Down
2 changes: 1 addition & 1 deletion apps/web/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const Header = () => {
});

return (
<header className="sticky top-0 z-50 flex w-full items-center justify-center border-b border-b-muted bg-background">
<header className="sticky z-50 top-0 flex w-full items-center justify-center border-b border-b-muted bg-background">
<div className="flex h-14 w-full max-w-authorised items-center px-5">
<ul className="flex size-full items-center justify-between gap-2 md:gap-0">
<li className="md:hidden">
Expand Down