Skip to content

Commit

Permalink
fix: relative imports in ts files (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
RLesser authored Sep 13, 2024
1 parent a33c4b0 commit 7c11a54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/organization.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AtlasUser, BaseAtlasClass } from './user.js';
import { AtlasDataset } from './project.js';
import type { components } from './type-gen/openapi.js';
import { AtlasViewer } from 'viewer.js';
import { AtlasViewer } from './viewer.js';

type UUID = string;

Expand Down
2 changes: 1 addition & 1 deletion src/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BaseAtlasClass } from './user.js';
import { AtlasIndex } from './index.js';
import { AtlasViewer } from './viewer.js';
import * as Atlas from './global.js';
import { components } from 'type-gen/openapi.js';
import { components } from './type-gen/openapi.js';
// get the API key from the node environment
type UUID = string;

Expand Down

0 comments on commit 7c11a54

Please sign in to comment.