diff options
| -rw-r--r-- | src/components/SubscriberTable/SubscriberTableRow.tsx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/components/SubscriberTable/SubscriberTableRow.tsx b/src/components/SubscriberTable/SubscriberTableRow.tsx index 595a2c1..8708f8a 100644 --- a/src/components/SubscriberTable/SubscriberTableRow.tsx +++ b/src/components/SubscriberTable/SubscriberTableRow.tsx @@ -14,17 +14,17 @@ const ChannelRow: React.FC<ChannelRowProps> = ({ channel, index }) => ( className="border-b hover:bg-gray-100 cursor-pointer" onClick={() => (window.location.href = "/stats/" + channel.channel_name)} > - <td className="py-3 px-1 sm:px-3 hidden sm:table-cell">{index + 1}</td> - <td className="py-3 px-1 sm:px-3 flex items-center"> - <Image - src={channel.profile_pic} - alt={channel.channel_name} - width={50} - height={50} - className="rounded-full" - /> - <span className="ml-2">{channel.channel_name}</span> - </td> + <td className="py-3 px-1 sm:px-3 hidden sm:table-cell">{index + 1}</td> + <td className="py-3 px-1 sm:px-3 flex items-center"> + <Image + src={channel.profile_pic} + alt={channel.channel_name} + width={50} + height={50} + className="rounded-full" + /> + <span className="ml-2">{channel.channel_name}</span> + </td> <td className="py-3 px-1 sm:px-3 hidden sm:table-cell"> {channel.sub_org} </td> |
