change profile tab to be stack nav like posts as well as changing created to open in postmodel

This commit is contained in:
Will Baumbach
2025-08-08 09:45:45 -05:00
parent 10ef00f753
commit b2eddf8b3c
7 changed files with 221 additions and 213 deletions

View File

@@ -20,8 +20,8 @@ const postSchema = new mongoose.Schema({
},
status: {
type: String,
enum: ['created', 'denied', 'approved'],
default: 'created'
enum: ['open', 'denied', 'approved'],
default: 'open'
}
})