frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: pass cid up

serenity fa9a23e1 ef03eb50

+4 -1
+4 -1
src/queries/get-channels-from-pds.ts
··· 17 17 }): Promise< 18 18 Result< 19 19 Array<{ 20 + cid: string; 20 21 uri: string; 21 22 value: SystemsGmstnDevelopmentChannel; 22 23 }>, ··· 43 44 }): Promise< 44 45 Result< 45 46 Array<{ 47 + cid: string; 46 48 uri: string; 47 49 value: SystemsGmstnDevelopmentChannel; 48 50 }>, ··· 50 52 > 51 53 > => { 52 54 const allRecords: Array<{ 55 + cid: string; 53 56 uri: string; 54 57 value: SystemsGmstnDevelopmentChannel; 55 58 }> = []; ··· 91 94 92 95 allRecords.push( 93 96 ...responses.map((data) => { 94 - return { uri: data.uri, value: data.value }; 97 + return data; 95 98 }), 96 99 ); 97 100