+6
-3
src/App.tsx
+6
-3
src/App.tsx
···
200
return res.json();
201
})
202
.then((data) => {
203
+
// Temporary: just store DID for now
204
+
// We'll add handle and serviceEndpoint when we build backend functions
205
setSession({
206
did: data.did,
207
+
handle: 'unknown', // placeholder
208
+
accessJwt: '', // no longer needed
209
+
serviceEndpoint: '', // no longer needed
210
});
211
+
setCurrentStep('upload');
212
window.history.replaceState({}, '', '/');
213
})
214
.catch((err) => {