Skip to content

Commit

Permalink
Update getFeedsPerChannel.ts (#800)
Browse files Browse the repository at this point in the history
  • Loading branch information
diposs authored Oct 23, 2023
1 parent 282dc1c commit 072dc88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/restapi/src/lib/user/getFeedsPerChannel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const getFeedsPerChannel = async (options: FeedsPerChannelOptionsType) =>
throw new Error('channels cannot be empty');
}
const _channel = await getCAIPAddress(env, channels[0], 'Channel');
const apiEndpoint = `${API_BASE_URL}/v1/users/${_channel}/channels/${_user}/feeds`;
const apiEndpoint = `${API_BASE_URL}/v1/users/${_user}/channels/${_channel}/feeds`;
const queryObj = {
page,
limit: getLimit(limit),
Expand Down

0 comments on commit 072dc88

Please sign in to comment.