Remove username prop from BasicWindow component

This commit is contained in:
Davenludd 2024-03-18 21:56:37 +01:00
parent 59add3b6b3
commit 5a4049eaf3

View file

@ -61,7 +61,7 @@ function UserProjectPage(): JSX.Element {
const buttons = <></>;
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
return <BasicWindow content={content} buttons={buttons} />;
}
export default UserProjectPage;