瀏覽代碼

small fix _cancel_

sheva77 3 年之前
父節點
當前提交
3b54be7d4b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      chat_final_bootstrap/src/Components/ButtonCansel.js

+ 1 - 1
chat_final_bootstrap/src/Components/ButtonCansel.js

@@ -6,7 +6,7 @@ export const ButtonCancel = ({ cansel = () => history.goBack() }) => (
     <>
         <Button className="gradient rounded-3 ms-2 mb-2" variant="secondary btn-sm" onClick={cansel}>
             <i className="bi bi-x-square"></i>
-            <span className="ms-2">Cansel</span>
+            <span className="ms-2">Cancel</span>
         </Button>
     </>
 );