in space-slack-sync/client/src/app/App.tsx [86:93]
async function loadInitialSlackData() {
// can't do these in parallel, the second one needs the results from the first
await slackTeams.loadSlackWorkspaces();
let selectedWorkspace = slackTeams.getSelectedSlackWorkspace();
if (selectedWorkspace !== null) {
await slackChannels.retrieveDefaultChannelBatch(selectedWorkspace.id, false);
}
}