This commit is contained in:
talksik
2022-05-30 10:48:30 -05:00
parent 522cf40cf7
commit cea118c1d0
2 changed files with 6 additions and 1 deletions
@@ -18,6 +18,7 @@ import { FiHeadphones, FiHelpCircle, FiLogOut, FiSun } from 'react-icons/fi';
import React, { useCallback } from 'react';
import ConversationLabel from '../subcomponents/ConversationLabel';
import { SUPPORT_DISPLAY_NAME } from '../util/support';
import { blueGrey } from '@mui/material/colors';
import useAuth from '../providers/AuthProvider';
import useTerminal from './Terminal';
@@ -36,7 +37,7 @@ export default function FooterControls() {
};
const handleQuickDialSupport = useCallback(() => {
handleOmniSearch('Nirvana Support');
handleOmniSearch(SUPPORT_DISPLAY_NAME);
}, [handleOmniSearch]);
return (
+4
View File
@@ -0,0 +1,4 @@
/**
* The string that should be used to search for the support account, regardless of the environment
*/
export const SUPPORT_DISPLAY_NAME = 'Nirvana Support';