Browse Source

BugFix for ShowStaffCredit

Yuki Takei 5 years ago
parent
commit
3ccae602f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/client/js/components/Hotkeys/Subscribers/ShowStaffCredit.jsx

+ 1 - 1
src/client/js/components/Hotkeys/Subscribers/ShowStaffCredit.jsx

@@ -5,7 +5,7 @@ import StaffCredit from '../../StaffCredit/StaffCredit';
 
 const ShowStaffCredit = (props) => {
 
-  return <StaffCredit onClose={() => props.onDeleteRender(this)} />;
+  return <StaffCredit onClosed={() => props.onDeleteRender(this)} />;
 
 };