Skip to content

Commit b2b9b69

Browse files
committed
fix: deps
1 parent 8c14611 commit b2b9b69

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

packages/rpc/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"@databuddy/auth": "workspace:*",
1111
"@databuddy/db": "workspace:*",
1212
"@databuddy/redis": "workspace:*",
13+
"@databuddy/services": "workspace:*",
1314
"@databuddy/shared": "workspace:*",
1415
"@databuddy/validation": "workspace:*",
1516
"@opentelemetry/api": "^1.9.0",

packages/services/src/websites.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -321,11 +321,11 @@ export class WebsiteService {
321321
userOrgPairs:
322322
created.userId && created.organizationId
323323
? [
324-
{
325-
userId: created.userId,
326-
organizationId: created.organizationId,
327-
},
328-
]
324+
{
325+
userId: created.userId,
326+
organizationId: created.organizationId,
327+
},
328+
]
329329
: [],
330330
});
331331

@@ -519,11 +519,11 @@ export class WebsiteService {
519519
userOrgPairs:
520520
deleted.userId && deleted.organizationId
521521
? [
522-
{
523-
userId: deleted.userId,
524-
organizationId: deleted.organizationId,
525-
},
526-
]
522+
{
523+
userId: deleted.userId,
524+
organizationId: deleted.organizationId,
525+
},
526+
]
527527
: [],
528528
});
529529
} catch (error) {

0 commit comments

Comments
 (0)