fix(ui): do not load empty id on replayer
This commit is contained in:
parent
7ac0aa0b98
commit
a82c1ee7d0
1 changed files with 1 additions and 2 deletions
|
|
@ -26,10 +26,8 @@ function WebPlayer(props: any) {
|
|||
closeBottomBlock,
|
||||
fullscreen,
|
||||
fetchList,
|
||||
customSession,
|
||||
insights,
|
||||
jumpTimestamp,
|
||||
onMarkerClick,
|
||||
} = props;
|
||||
const { notesStore } = useStore();
|
||||
const [activeTab, setActiveTab] = useState('');
|
||||
|
|
@ -39,6 +37,7 @@ function WebPlayer(props: any) {
|
|||
const [contextValue, setContextValue] = useState<IPlayerContext>(defaultContextValue);
|
||||
|
||||
useEffect(() => {
|
||||
if (!session.sessionId) return;
|
||||
fetchList('issues');
|
||||
|
||||
const [WebPlayerInst, PlayerStore] = createWebPlayer(session, (state) =>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue