chore: github copilot code review nitpicks

This commit is contained in:
2025-12-20 02:26:46 +01:00
parent 18025ced9d
commit 0581cc6a61
3 changed files with 5 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
'use client';
import * as React from 'react';
import { ChevronDown, ChevronUp, Radio } from 'lucide-react';
import { ChevronDown, ChevronUp } from 'lucide-react';
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import {
Sidebar as UISidebar,

View File

@@ -18,7 +18,7 @@ export default async function syncStreamKeys() {
const pipeline = redis.pipeline();
for (const key of keys) {
if (key.channel) {
if (key.channel && key.channel.name) {
pipeline.set(`streamKey:${key.channel.name}`, key.key);
}
}

View File

@@ -33,8 +33,9 @@
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
, "tailwind.config.mts" ],
".next/dev/types/**/*.ts",
"tailwind.config.mts"
],
"exclude": [
"node_modules"
]