Skip to content

Commit 1ad187b

Browse files
committed
lint
1 parent ce05d89 commit 1ad187b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/thirdweb/src/react/core/hooks/useStepExecutor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export type CompletedStatusResult =
3434
/**
3535
* Options for the step executor hook
3636
*/
37-
export interface StepExecutorOptions {
37+
interface StepExecutorOptions {
3838
/** Prepared quote returned by Bridge.prepare */
3939
request: BridgePrepareRequest;
4040
/** Wallet instance providing getAccount() & sendTransaction */
@@ -78,7 +78,7 @@ interface StepExecutorResult {
7878
/**
7979
* Flatten RouteStep[] into a linear list of transactions preserving ordering & indices.
8080
*/
81-
export function flattenRouteSteps(steps: RouteStep[]): FlattenedTx[] {
81+
function flattenRouteSteps(steps: RouteStep[]): FlattenedTx[] {
8282
const out: FlattenedTx[] = [];
8383
steps.forEach((step, stepIdx) => {
8484
step.transactions?.forEach((tx, _txIdx) => {

0 commit comments

Comments
 (0)