fixing image display for posts on profile page, adding success confirmation modal, changing posts display,

This commit is contained in:
Will Baumbach
2025-08-06 13:36:47 -05:00
parent ed4e1089ee
commit 878e18941e
8 changed files with 187 additions and 210 deletions

View File

@@ -7,8 +7,8 @@ export interface Post {
}
export enum StatusEnum {
Created = "created",
Pending = "pending",
Denied = "denied",
Accepted = "accepted"
}
Created = 'created',
Pending = 'pending',
Denied = 'denied',
Accepted = 'accepted'
}