@ultraviolet/plus 0.21.4 → 0.21.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -60,7 +60,7 @@ const NavigationProvider = ({
60
60
  const navigationRef = useRef(null);
61
61
  const toggleExpand = useCallback((toggle) => {
62
62
  if (typeof toggle !== "boolean" && toggle !== void 0) {
63
- throw new Error(`toggleExpand only accepts boolean or undefined as parameter. You most likely did <button onClick={toggleExpand}> instead of <button onClick={() => toggleExpand()}>`);
63
+ throw new Error("toggleExpand only accepts boolean or undefined as parameter. You most likely did <button onClick={toggleExpand}> instead of <button onClick={() => toggleExpand()}>");
64
64
  }
65
65
  if (toggle !== void 0 && toggle === expanded) {
66
66
  return;