From cd871c721709fde66334c889504d208a1f87fa50 Mon Sep 17 00:00:00 2001 From: Caleb Gardner Date: Thu, 9 Jan 2025 03:01:00 -0600 Subject: [PATCH] Fixed about me on portfolio page --- internal/blog/author.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/blog/author.go b/internal/blog/author.go index 3eb82d7..b39ff5c 100644 --- a/internal/blog/author.go +++ b/internal/blog/author.go @@ -33,7 +33,7 @@ func (a Author) HTML() string { } func (b *BlogApp) AboutMe(ctx context.Context) (*Author, error) { - res := b.authCol.FindOne(ctx, bson.M{"_id": "caleb_gardner"}) + res := b.authCol.FindOne(ctx, bson.M{"_id": "BelacDarkstorm"}) if res.Err() != nil { log.Println("error getting about me:", res.Err()) if res.Err() == mongo.ErrNoDocuments {