Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions frontend/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
"json-bigint": "^1.0.0",
"jwt-decode": "^4.0.0",
"lottie-react": "^2.4.1",
"lucide-react": "^0.563.0",
"lucide-react": "^1.8.0",
"moment": "^2.30.1",
"monaco-editor": "^0.55.0",
"monaco-editor-webpack-plugin": "^7.1.1",
Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export {
Layers as LayersIcon, // MdOutlineLayers
LayoutGrid as CollectionIcon, // CollectionIcon (Heroicons) - Note: 3x3 grid → 2x2 grid
Link as LinkIcon, // LinkIcon (Heroicons)
Linkedin as LinkedInIcon, // FaLinkedin (LinkedIn removed from simple-icons)
Loader2 as LoaderIcon, // Loading spinner
Lock as LockIcon, // LockIcon (Octicons)
Menu as MenuIcon, // ThreeBarsIcon (Octicons)
Expand Down
10 changes: 1 addition & 9 deletions frontend/src/components/layout/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/

import { useLocation, useMatchRoute } from '@tanstack/react-router';
import { GitHubIcon, LinkedInIcon, SlackIcon, TwitterIcon } from 'components/icons';
import { GitHubIcon, SlackIcon, TwitterIcon } from 'components/icons';

import { isEmbedded } from '../../config';
import env, { getBuildDate, IsCI, IsDev } from '../../utils/env';
Expand Down Expand Up @@ -88,14 +88,6 @@ export const AppFooter = () => {
<a href="https://twitter.com/redpandadata" rel="noopener noreferrer" target="_blank" title="Twitter">
<TwitterIcon size={16} />
</a>
<a
href="https://www.linkedin.com/company/redpanda-data"
rel="noopener noreferrer"
target="_blank"
title="LinkedIn"
>
<LinkedInIcon size={16} />
</a>
</div>

{/* Version Info */}
Expand Down
Loading