Skip to content

Commit

Permalink
fix UMD global bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dvargas92495 committed May 18, 2023
1 parent 4023ddc commit 50b3902
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package/components/SharedPageTab.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from "react";
import { SamePageSchema } from "../internal/types";
import AtJsonRendered from "./AtJsonRendered";
import Button from "./Button";
Expand All @@ -6,7 +7,7 @@ import SharedPageStatus from "./SharedPageStatus";
import useNavigateWithSearch from "./useNavigateWithSearch";
import { useLoaderData } from "react-router-dom";

const SharedPageTab = () => {
const SharedPageTab: React.FC = () => {
const data = useLoaderData() as {
auth: true;
notebookPageId: string;
Expand Down

0 comments on commit 50b3902

Please sign in to comment.