diff --git a/src/StartScreen.tsx b/src/StartScreen.tsx index 3a14a3618..70e9f1e88 100644 --- a/src/StartScreen.tsx +++ b/src/StartScreen.tsx @@ -26,11 +26,13 @@ interface StartScreenProps export function StartScreen(props: StartScreenProps) { if (props.state.status === 'idle' && props.hasSuggestions === false) { + if (props.disableUserPersonalization) { + return null; + } + return (
- {!props.disableUserPersonalization && ( -

No recent searches

- )} +

No recent searches

); }