Fix TypeScript build errors

- Remove unused imports in invites.ts
- Fix InviteManagement component (remove unused props, unneeded code)
- Fix BandPage.tsx (remove currentMemberId, remove UserSearch for now)
- Remove unused imports in types/invite.ts

Build errors resolved:
- TS6133: unused variables
- TS2304: missing variables
- TS2307: module not found

Note: UserSearch temporarily disabled - needs backend support for listing non-members

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
Mistral Vibe
2026-04-01 11:53:00 +02:00
parent 81c90222d5
commit 2aa8ec8c59
4 changed files with 7 additions and 27 deletions

View File

@@ -4,7 +4,6 @@ import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query";
import { getBand } from "../api/bands";
import { api } from "../api/client";
import { InviteManagement } from "../components/InviteManagement";
import { UserSearch } from "../components/UserSearch";
interface SongSummary {
id: string;
@@ -292,17 +291,7 @@ export function BandPage() {
</button>
{/* Search for users to invite (new feature) */}
<UserSearch
onSelect={(user, bandId) => {
// Directly invite the user (backend needs to handle this)
console.log(`Inviting ${user.display_name} to ${bandId}`);
// For now, we'll just log - the backend can handle email if needed
alert(`Would invite ${user.display_name} (${user.email}) to this band!`);
}}
bandId={bandId!}
currentMemberId={currentMemberId}
excludedIds={members?.map(m => m.id) || []}
/>
{/* Temporarily hide user search until backend supports it */}
</>
)}
</div>
@@ -353,9 +342,7 @@ export function BandPage() {
</div>
{/* Admin: Invite Management Section (new feature) */}
{amAdmin && (
<InviteManagement bandId={bandId!} currentMemberId={currentMemberId} />
)}
{amAdmin && <InviteManagement bandId={bandId!} />}
</div>
{/* Recordings header */}