refactor: show projected time

This commit is contained in:
Carlos Valente
2025-02-16 22:06:08 +01:00
committed by Carlos Valente
parent 9c41f8ff6b
commit a5afb32b8a
4 changed files with 118 additions and 25 deletions
@@ -170,6 +170,10 @@ export const useTimelineStatus = createSelector((state: RuntimeStore) => ({
offset: state.runtime.offset,
}));
export const useRuntimeOffset = createSelector((state: RuntimeStore) => ({
offset: state.runtime.offset,
}));
export const usePing = createSelector((state: RuntimeStore) => ({
ping: state.ping,
}));