wizard avatar fix
parent
ed71b11daf
commit
680c6724b6
|
@ -73,12 +73,21 @@ const Wizard = ({ dismissBot }) => {
|
||||||
setTimeout(dismissBot, 3000);
|
setTimeout(dismissBot, 3000);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getAvatar = () => {
|
||||||
|
const basePath = "public/icons/wizard.png";
|
||||||
|
if (process.env.PUBLIC_URL) {
|
||||||
|
return `${process.env.PUBLIC_URL}/${basePath}`;
|
||||||
|
} else {
|
||||||
|
return basePath;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider theme={botTheme}>
|
<ThemeProvider theme={botTheme}>
|
||||||
<ChatBot
|
<ChatBot
|
||||||
handleEnd={handleEnd}
|
handleEnd={handleEnd}
|
||||||
steps={steps}
|
steps={steps}
|
||||||
botAvatar="public/icons/wizard.png"
|
botAvatar={getAvatar()}
|
||||||
headerTitle="Zirhan"
|
headerTitle="Zirhan"
|
||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|
Loading…
Reference in New Issue