Przeglądaj źródła

use React.ReactNode

reiji-h 3 lat temu
rodzic
commit
6a07ab7404

+ 1 - 1
apps/app/src/components/Admin/AdminHome/EnvVarsTable.tsx

@@ -5,7 +5,7 @@ type EnvVarsTableProps = {
 }
 
 const EnvVarsTable: React.FC<EnvVarsTableProps> = (props: EnvVarsTableProps) => {
-  const envVarRows: JSX.Element[] = [];
+  const envVarRows: React.ReactNode[] = [];
 
   for (const [key, value] of Object.entries(props.envVars)) {
     if (value != null) {