diff options
author | Hailey <me@haileyok.com> | 2024-06-25 09:24:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 09:24:05 -0700 |
commit | e5b9f130a9be7a8fb2628adbefd75a1c7140b140 (patch) | |
tree | 63849d95fd46a89b04bbaa0b008d26a07d39cbe1 /src | |
parent | fc2fba0981225dc49257cfda9d0c13b393544597 (diff) | |
download | voidsky-e5b9f130a9be7a8fb2628adbefd75a1c7140b140.tar.zst |
Only add the URI to the record (#4639)
Diffstat (limited to 'src')
-rw-r--r-- | src/state/queries/starter-packs.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/starter-packs.ts b/src/state/queries/starter-packs.ts index ca7fa2d0c..c279b6dc4 100644 --- a/src/state/queries/starter-packs.ts +++ b/src/state/queries/starter-packs.ts @@ -127,7 +127,7 @@ export function useCreateStarterPackMutation({ description, descriptionFacets, list: listRes?.uri, - feeds, + feeds: feeds?.map(f => ({uri: f.uri})), createdAt: new Date().toISOString(), }, ) |