From e50db44e89a604ef47691b06514e8bff919ea2b4 Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Sat, 10 Apr 2021 10:05:39 +0200 Subject: [PATCH] fix: Add link to error message about controlled vs uncontrolled --- src/components/Tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Tabs.js b/src/components/Tabs.js index 2baf5f19f9..1076c0364a 100644 --- a/src/components/Tabs.js +++ b/src/components/Tabs.js @@ -89,7 +89,7 @@ export default class Tabs extends Component { ) { throw new Error( `Switching between controlled mode (by using \`selectedIndex\`) and uncontrolled mode is not supported in \`Tabs\`. -For more information about controlled and uncontrolled mode of react-tabs see the README.`, +For more information about controlled and uncontrolled mode of react-tabs see https://github.com/reactjs/react-tabs#controlled-vs-uncontrolled-mode.`, ); }