Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ENvironmentSet committed Feb 4, 2025
1 parent d2c1b6d commit 1cb8468
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integrations/react/src/future/stackflow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import {
makeCoreStore,
makeEvent,
} from "@stackflow/core";
import { findLatestActiveActivity } from "__internal__/activity/findLatestActiveActivity";
import React, { useMemo } from "react";
import MainRenderer from "../__internal__/MainRenderer";
import { makeActivityId } from "../__internal__/activity";
import { findLatestActiveActivity } from "../__internal__/activity/findLatestActiveActivity";
import { CoreProvider } from "../__internal__/core";
import { PluginsProvider } from "../__internal__/plugins";
import { isBrowser, makeRef } from "../__internal__/utils";
Expand Down
2 changes: 1 addition & 1 deletion integrations/react/src/future/useStepFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type {
InferActivityParams,
RegisteredActivityName,
} from "@stackflow/config";
import { ActivityContext } from "__internal__/activity";
import { useContext } from "react";
import { ActivityContext } from "../__internal__/activity";
import { useCoreActions } from "../__internal__/core";
import type { StepActions } from "./StepActions";
import { makeStepActions } from "./makeStepActions";
Expand Down
2 changes: 1 addition & 1 deletion integrations/react/src/stable/stackflow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import type {
import { makeCoreStore, makeEvent } from "@stackflow/core";
import { memo, useMemo } from "react";

import { findLatestActiveActivity } from "__internal__/activity/findLatestActiveActivity";
import type { ActivityComponentType } from "../__internal__/ActivityComponentType";
import MainRenderer from "../__internal__/MainRenderer";
import type { StackflowReactPlugin } from "../__internal__/StackflowReactPlugin";
import { makeActivityId, makeStepId } from "../__internal__/activity";
import { findLatestActiveActivity } from "../__internal__/activity/findLatestActiveActivity";
import { CoreProvider } from "../__internal__/core";
import { PluginsProvider } from "../__internal__/plugins";
import { isBrowser, makeRef } from "../__internal__/utils";
Expand Down

0 comments on commit 1cb8468

Please sign in to comment.