Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
fix: run prettier
Browse files Browse the repository at this point in the history
Signed-off-by: Ariel Gentile <[email protected]>
  • Loading branch information
genaris committed Sep 1, 2023
1 parent 30921e9 commit 7befa54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ export * from './messages'
export * from './repository'
export * from './services'
export * from './model'

8 changes: 4 additions & 4 deletions src/services/UserProfileService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class UserProfileService {
private userProfileRepository: UserProfileRepository
private connectionService: ConnectionService
private eventEmitter: EventEmitter

public constructor(
userProfileRepository: UserProfileRepository,
connectionService: ConnectionService,
Expand Down Expand Up @@ -70,9 +70,9 @@ export class UserProfileService {
*/
public async getUserProfile(agentContext: AgentContext): Promise<UserProfileRecord> {
let userProfileRecord = await this.userProfileRepository.findById(
agentContext,
this.userProfileRepository.DEFAULT_USER_PROFILE_RECORD
)
agentContext,
this.userProfileRepository.DEFAULT_USER_PROFILE_RECORD
)

// If we don't have an user profile record yet, create it
if (!userProfileRecord) {
Expand Down

0 comments on commit 7befa54

Please sign in to comment.