Răsfoiți Sursa

delete prop-types

reiji-h 3 ani în urmă
părinte
comite
abd7ea3429

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

@@ -1,7 +1,5 @@
 import React from 'react';
 
-import PropTypes from 'prop-types';
-
 type EnvVarsTableProps = {
   envVars: object,
 }
@@ -29,8 +27,4 @@ const EnvVarsTable: React.FC<EnvVarsTableProps> = (props: EnvVarsTableProps) =>
   );
 };
 
-EnvVarsTable.propTypes = {
-  envVars: PropTypes.object.isRequired,
-};
-
 export default EnvVarsTable;