My send bird UI kit is not showing channels/groups that are created by API. It only shows groups that are created by the user.
// What version of the SDK are you using?
UI Kit 3
// Please provide reproduction steps and, if possible, code snippets.
import SendbirdApp from '@sendbird/uikit-react/App';
import '@sendbird/uikit-react/dist/index.css';
function SendBird ({user_id, app_id, access_token}){
return (
<div className="App">
{/*add link to go to home page*/}
<SendbirdApp
// Add the two lines below.
appId={app_id} // Specify your Sendbird application ID.
userId={user_id} // Specify your user ID.
accessToken={access_token} // Specify your user access token.
/>
</div>
);
};
export default SendBird;