fix profiles query

This commit is contained in:
Hailey
2024-06-09 17:02:14 -07:00
parent 735e8e15c4
commit dae6ea0bcd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ export function Provider({
const createInitialState = (): State => {
if (starterPack && AppBskyGraphStarterpack.isRecord(starterPack.record)) {
return {
canNext: false,
canNext: true,
currentStep: 'Details',
name: starterPack.record.name,
description: starterPack.record.description,
+1 -1
View File
@@ -59,7 +59,7 @@ export function Wizard({
const {data} = useListMembersQuery(listUri)
const profiles = data?.pages.flatMap(p => p.items.map(i => i.subject))
if (name && rkey && !starterPack && (!listUri || (listUri && !profiles))) {
if (name && rkey && (!starterPack || (starterPack && listUri && !profiles))) {
return (
<ListMaybePlaceholder
isLoading={isLoadingDid || isLoadingStarterPack}