Browse Source

change envVars type annotation

reiji-h 3 years ago
parent
commit
f8f07339d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/app/src/components/Admin/AdminHome/EnvVarsTable.tsx

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

@@ -1,7 +1,7 @@
 import React from 'react';
 
 type EnvVarsTableProps = {
-  envVars: object,
+  envVars: Record<string, string | number | boolean>,
 }
 
 export const EnvVarsTable: React.FC<EnvVarsTableProps> = (props: EnvVarsTableProps) => {