feat: add project owner info on project settings page

This commit is contained in:
Takeshi Kimata
2024-07-18 10:17:10 +09:00
parent 76b7aa0dac
commit 7e05eda259
8 changed files with 102 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ export type SettingsMessages = {
projectManagement: string;
projectName: string;
projectDetail: string;
projectOwner: string;
editProject: string;
project: string;
publicity: string;

View File

@@ -7,7 +7,7 @@ export type UserType = {
username: string;
role: number;
avatarPath: string | null;
} | null;
};
export type TokenProps = {
toastMessages: ToastMessages;