feat(tagged posts): Nostr posts made with this app are tagged for easy tracking in a global feed

This commit is contained in:
Chris Troutner
2025-06-02 10:36:35 -07:00
parent 192497b5cf
commit a4027b2fcb
@@ -51,7 +51,7 @@ function PublicPost (props) {
const eventTemplate = { const eventTemplate = {
kind: 1, kind: 1,
created_at: Math.floor(Date.now() / 1000), created_at: Math.floor(Date.now() / 1000),
tags: [], tags: [['t', 'slpdex-socialmedia']],
content: formData.content content: formData.content
} }
console.log(`eventTemplate: ${JSON.stringify(eventTemplate, null, 2)}`) console.log(`eventTemplate: ${JSON.stringify(eventTemplate, null, 2)}`)