mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
fix: random streaminfo executes
This commit is contained in:
@@ -397,9 +397,9 @@ export default function ChannelSettingsClient({
|
||||
<h3 className="text-lg font-semibold">Stream Information</h3>
|
||||
{channel.streamInfo.length > 0 ? (
|
||||
<div className="space-y-4">
|
||||
{channel.streamInfo.map((stream) => (
|
||||
{channel.streamInfo.map((stream, index) => (
|
||||
<UniversalForm
|
||||
key={stream.id}
|
||||
key={`${stream.id}-${stream.username}-${index}`}
|
||||
fields={[
|
||||
{
|
||||
name: 'username',
|
||||
|
||||
Reference in New Issue
Block a user