Recognize homefront operations as combat sites

This commit is contained in:
2025-06-16 19:47:27 +02:00
parent 110cefd15a
commit b13635eb69
3 changed files with 1 additions and 3 deletions

View File

@@ -12,7 +12,6 @@ interface SignatureCategoriesProps {
}
export const SignatureCategories = ({ categories, onToggleCategory }: SignatureCategoriesProps) => {
console.log(categories);
if (categories.length === 0) {
return (
<Card className="bg-slate-800/30 border-slate-700">

View File

@@ -26,7 +26,7 @@ const allCategories = new Map<string, SignatureCategoryMeta>([
color: "text-slate-400 border-slate-600"
}],
["combat", {
matcher: /^combat/i,
matcher: /^(?:combat|homefront)/i,
id: "combat",
name: 'Combat Sites',
icon: <Zap className="h-4 w-4 text-red-400" />,

View File

@@ -9,7 +9,6 @@ import { parseSignature, parseScannedPercentage } from "@/utils/signatureParser"
import { getSystemId } from "@/utils/systemApi";
import pb from "@/lib/pocketbase";
import { SigviewRecord as Signature } from "@/lib/pbtypes";
import { udpSocket } from "bun";
export const SystemView = () => {
const { system, region } = useParams();