mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-06-10 00:03:59 +02:00
Fix ChangelogModal TypeScript after contributor trim.
Declare optional pr on contributor entries so the build type-check passes with OSIRIS-only credits. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -101,7 +101,13 @@ const BUG_FIXES = [
|
||||
'OpenClaw agents can invoke the Recon panel backends via `osint_lookup` without raw `/api/osint/*` HTTP calls or local-operator browser auth.',
|
||||
];
|
||||
|
||||
const CONTRIBUTORS = [
|
||||
type ChangelogContributor = {
|
||||
name: string;
|
||||
desc: string;
|
||||
pr?: string;
|
||||
};
|
||||
|
||||
const CONTRIBUTORS: ChangelogContributor[] = [
|
||||
{
|
||||
name: 'OSIRIS (simplifaisoul/osiris)',
|
||||
desc: 'MIT-licensed recon stack — adapted for ShadowBroker proxy model (see backend/third_party/osiris/NOTICE.md)',
|
||||
|
||||
Reference in New Issue
Block a user