Skip to content

Feature: feature/member-site to dev#211

Open
github-actions[bot] wants to merge 2 commits intodevfrom
feature/member-site
Open

Feature: feature/member-site to dev#211
github-actions[bot] wants to merge 2 commits intodevfrom
feature/member-site

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

Automated PR tracking changes from feature/member-site into dev.

@github-actions github-actions Bot added dependencies Pull requests that update a dependency file feature labels Apr 29, 2026
@github-actions
Copy link
Copy Markdown
Contributor Author

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
npm/lucide-react 1.14.0 🟢 3.2
Details
CheckScoreReason
Maintained🟢 1030 commit(s) and 10 issue activity found in the last 90 days -- score normalized to 10
Dangerous-Workflow⚠️ 0dangerous workflow patterns detected
Code-Review🟢 8Found 21/25 approved changesets -- score normalized to 8
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Packaging⚠️ -1packaging workflow not detected
Security-Policy⚠️ 0security policy file not detected
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
License🟢 9license file detected
Fuzzing⚠️ 0project is not fuzzed
Binary-Artifacts🟢 10no binaries found in the repo
Pinned-Dependencies⚠️ 0dependency not pinned by hash detected -- score normalized to 0
Branch-Protection⚠️ -1internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md
Signed-Releases⚠️ 0Project has not signed or included provenance with any releases.
SAST⚠️ 0SAST tool is not run on all commits -- score normalized to 0

Scanned Files

  • pnpm-lock.yaml

import { useRouter } from 'next/navigation';
import AdminLayout from '@/components/portal/AdminLayout';
import { LiquidGlass } from '@/components/portal/LiquidGlass';
import { Users, Trophy, Calendar, Clock, TrendingUp, Activity } from 'lucide-react';
export default function AttendeesPage() {
const { data: session, status } = useSession();
const router = useRouter();
const utils = trpc.useUtils();
<h2 className="text-xl font-bold text-white">Hackathons</h2>
<p className="text-gray-500 text-sm">{hackathons?.length || 0} total</p>
</div>
<button
import { useState } from 'react';
import AdminLayout from '@/components/portal/AdminLayout';
import { LiquidGlass } from '@/components/portal/LiquidGlass';
import { Plus, Star, Clock, AlertCircle } from 'lucide-react';
const router = useRouter();
const utils = trpc.useUtils();

const { data: projects, isLoading, refetch } = trpc.project.listAll.useQuery(
);

const [showCreateProject, setShowCreateProject] = useState(false);
const [editingProjectId, setEditingProjectId] = useState<string | null>(null);
},
});

const updateProjectMutation = trpc.project.update.useMutation({
},
});

const deleteProjectMutation = trpc.project.delete.useMutation({
localStorage.setItem('theme', theme);
}, [theme]);

const handleLogout = () => {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

⤵️ pull dependencies Pull requests that update a dependency file feature

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants