about summary refs log tree commit diff
path: root/src/view/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com')
-rw-r--r--src/view/com/modals/CreateScene.tsx8
-rw-r--r--src/view/com/profile/ProfileHeader.tsx2
2 files changed, 8 insertions, 2 deletions
diff --git a/src/view/com/modals/CreateScene.tsx b/src/view/com/modals/CreateScene.tsx
index 5c0a351b2..64c26a7bc 100644
--- a/src/view/com/modals/CreateScene.tsx
+++ b/src/view/com/modals/CreateScene.tsx
@@ -43,7 +43,13 @@ export function Component({}: {}) {
         handle: fullHandle,
       })
       // set the scene profile
-      // TODO
+      await store.api.app.bsky.actor
+        .updateProfile({
+          did: createSceneRes.data.did,
+          displayName,
+          description,
+        })
+        .catch(e => console.error(e)) // an error here is not critical
       // follow the scene
       await store.api.app.bsky.graph.follow
         .create(
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx
index 3adffc44c..b7440d313 100644
--- a/src/view/com/profile/ProfileHeader.tsx
+++ b/src/view/com/profile/ProfileHeader.tsx
@@ -127,7 +127,7 @@ export const ProfileHeader = observer(function ProfileHeader({
     if (isCreator) {
       dropdownItems.push({
         label: 'Edit Profile',
-        onPress: () => {}, // TODO
+        onPress: onPressEditProfile,
       })
     }
     if (isMember) {