From 172a138aa2c11f99eaf507c78240ce02cd183393 Mon Sep 17 00:00:00 2001 From: Khoa Vo Date: Thu, 1 Jan 2026 21:32:55 +0700 Subject: [PATCH] fix: remove unused INSPIRATION_QUOTES to fix TypeScript build --- frontend/src/components/Feed.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/frontend/src/components/Feed.tsx b/frontend/src/components/Feed.tsx index 028278b..6e6c8a7 100644 --- a/frontend/src/components/Feed.tsx +++ b/frontend/src/components/Feed.tsx @@ -84,19 +84,6 @@ const SUGGESTED_ACCOUNTS = [ { username: '@taylerholder', label: '🔥 Tayler Holder' }, ]; - -// Inspirational quotes for loading states -const INSPIRATION_QUOTES = [ - { text: "Dance like nobody's watching", author: "William W. Purkey" }, - { text: "Life is short, make every moment count", author: "Unknown" }, - { text: "Create the things you wish existed", author: "Unknown" }, - { text: "Be yourself; everyone else is taken", author: "Oscar Wilde" }, - { text: "Stay hungry, stay foolish", author: "Steve Jobs" }, - { text: "The only way to do great work is to love what you do", author: "Steve Jobs" }, - { text: "Dream big, start small", author: "Unknown" }, - { text: "Creativity takes courage", author: "Henri Matisse" }, -]; - // NOTE: Keyword search is now handled by the backend /api/user/search endpoint export const Feed: React.FC = () => {