Răsfoiți Sursa

Merge pull request #4920 from weseek/fix/79579-84113-remove-unnesessary-props

fix: remove one props type
Yohei Shiina 4 ani în urmă
părinte
comite
f88bac1084
1 a modificat fișierele cu 0 adăugiri și 1 ștergeri
  1. 0 1
      packages/app/src/components/ExpandOrContractButton.tsx

+ 0 - 1
packages/app/src/components/ExpandOrContractButton.tsx

@@ -3,7 +3,6 @@ import React, { FC } from 'react';
 
 type Props = {
   isWindowExpanded: boolean,
-  color?: string,
   contractWindow?: () => void,
   expandWindow?: () => void,
 };