Skip to content

Commit fb80ad6

Browse files
chore: fix import paths in utils and tests
Updated relative import paths for consistency and clarity.
1 parent f2d5421 commit fb80ad6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/get-user-experience.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { StaticDecode, Type as T } from "@sinclair/typebox";
22
import { Value } from "@sinclair/typebox/value";
3-
import { Context } from "../types";
3+
import { Context } from "../types/index";
44

55
const xpUserSchema = T.Object({
66
login: T.String({ minLength: 1 }),

tests/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { CommentHandler } from "@ubiquity-os/plugin-sdk";
22
import { Logs } from "@ubiquity-os/ubiquity-os-logger";
33
import { createAdapters } from "../src/adapters/index";
4-
import { AssignedIssueScope, Context, DEFAULT_EXPERIENCE_PRIORITY_THRESHOLDS, Role, SupportedEvents } from "../src/types";
4+
import { AssignedIssueScope, Context, DEFAULT_EXPERIENCE_PRIORITY_THRESHOLDS, Role, SupportedEvents } from "../src/types/index";
55
import { db } from "./__mocks__/db";
66

77
const octokit = await import("@octokit/rest");

0 commit comments

Comments
 (0)