diff --git a/components/page/didYouKnowTip.tsx b/components/page/didYouKnowTip.tsx
index 56a53f0a9..c3da7e0b0 100644
--- a/components/page/didYouKnowTip.tsx
+++ b/components/page/didYouKnowTip.tsx
@@ -18,17 +18,12 @@ export default function DidYouKnowTip({ reqUser }: DidYouKnowTipProps) {
<>We have an iOS and Android app! Check it out: iOS and Android.>,
<>Follow level creators by clicking their username to visit their profile.>,
<>Go Pro for features like Checkpoints, Redo, and community time comparisons. Learn more.>,
- <>You can customize your notification preferences in your notifications settings.>
+ <>You can customize your notification preferences in your notifications settings.>,
+ <>See your earned and potential achievements.>,
+ <>Create collections of levels, like your favorites, here.>,
+ <>You can customize your profile picture, bio, and more on your profile.>,
] as JSX.Element[];
- if (reqUser) {
- tips.push(
- <>See your earned and potential achievements.>,
- <>Create collections of levels, like your favorites, here.>,
- <>You can customize your profile picture, bio, and more on your profile.>,
- );
- }
-
const randomTip = useRef(tips[Math.floor(Math.random() * tips.length)]);
return (