Compare commits
No commits in common. "cad86218a70a2ab55218ce12e9738fb1b87484e1" and "9cecd24918e17c4091210ed6e0348980d69d449b" have entirely different histories.
cad86218a7
...
9cecd24918
|
|
@ -302,11 +302,8 @@ export function InputBox({
|
|||
}
|
||||
}, [showWelcomeStyle, hasSubmitted, isInputToolsTourReady]);
|
||||
|
||||
const finishInputToolsTour = useCallback(() => {
|
||||
window.localStorage.setItem(INPUT_TOOLS_TOUR_SEEN_KEY, "1");
|
||||
setIsInputToolsTourOpen(false);
|
||||
}, []);
|
||||
const closeInputToolsTour = useCallback(() => {
|
||||
window.localStorage.setItem(INPUT_TOOLS_TOUR_SEEN_KEY, "1");
|
||||
setIsInputToolsTourOpen(false);
|
||||
}, []);
|
||||
|
||||
|
|
@ -733,11 +730,14 @@ export function InputBox({
|
|||
<Tour
|
||||
open={isInputToolsTourOpen}
|
||||
onClose={closeInputToolsTour}
|
||||
onFinish={finishInputToolsTour}
|
||||
onFinish={closeInputToolsTour}
|
||||
gap={
|
||||
{ offset: 3 , radius:10 }
|
||||
{ offset: 4 , radius: 2 }
|
||||
}
|
||||
mask={{
|
||||
style: {
|
||||
boxShadow: 'inset 0 0 15px #333',
|
||||
},
|
||||
color: 'rgba(255,255,255, .8)',
|
||||
}}
|
||||
steps={inputToolsTourSteps}
|
||||
|
|
|
|||
Loading…
Reference in New Issue