Add channels IT coverage, live UI loading, and runbook

This commit is contained in:
ai5590
2026-03-30 16:06:28 +03:00
parent 9723696b2c
commit c0fba4af94
10 changed files with 549 additions and 69 deletions
+7
View File
@@ -97,6 +97,8 @@ function createInitialState({ withStoredSession = true } = {}) {
info: '',
},
sessions: [],
channelsFeed: null,
channelsIndex: {},
};
}
@@ -232,3 +234,8 @@ export function refreshRegistrationBalance() {
state.registrationPayment.balanceSOL = next;
return next;
}
export function setChannelsFeed(feed, index) {
state.channelsFeed = feed || null;
state.channelsIndex = index || {};
}