fix: return data property from update

This commit is contained in:
Derrick Hammer 2023-07-11 02:32:41 -04:00
parent 474c61e759
commit a5c01533fe
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -89,5 +89,5 @@ export async function getConsensusOptimisticUpdate() {
throw Error(`fetching optimistic update failed`); throw Error(`fetching optimistic update failed`);
} }
return update; return update.data;
} }