gRPC authentication

This commit is contained in:
Gregory Schier
2024-02-17 23:47:28 -08:00
parent ab8503d87c
commit 8d29fad261
16 changed files with 246 additions and 123 deletions

View File

@@ -82,7 +82,7 @@ export function Tabs({
{tabs.map((t) => {
const isActive = t.value === value;
const btnClassName = classNames(
isActive ? '' : 'text-gray-600 hover:text-gray-800',
isActive ? 'text-gray-800' : 'text-gray-600 hover:text-gray-700',
'!px-2 ml-[1px]',
);