fix(ui) - not popup conflict with timeline tooltip

This commit is contained in:
Shekar Siri 2023-04-28 17:57:33 +02:00
parent e3ece35c89
commit f6eff27ab8
2 changed files with 2 additions and 3 deletions

View file

@ -30,6 +30,7 @@ import PlayerControls from './components/PlayerControls';
import styles from './controls.module.css';
import XRayButton from 'Shared/XRayButton';
import CreateNote from 'Components/Session_/Player/Controls/components/CreateNote';
export const SKIP_INTERVALS = {
2: 2e3,
@ -155,6 +156,7 @@ function Controls(props: any) {
return (
<div className={styles.controls}>
<Timeline />
<CreateNote />
{!fullscreen && (
<div className={cn(styles.buttons, '!px-2')}>
<div className="flex items-center">

View file

@ -1,16 +1,13 @@
import React from 'react'
import TimeTooltip from './TimeTooltip';
import CreateNote from './CreateNote';
import store from 'App/store';
import { Provider } from 'react-redux';
function TooltipContainer() {
return (
<Provider store={store}>
<>
<TimeTooltip />
<CreateNote />
</>
</Provider>
)