Skip to content

Commit dc5f4c3

Browse files
committed
task(auth): Fix prod build error
Because: - Evidently we can't reference `@fxa/` here... This Commit: - Uses the relative path
1 parent 5c89a0e commit dc5f4c3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • packages/fxa-auth-server/lib/routes

packages/fxa-auth-server/lib/routes/totp.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ const TOTP_DOCS = require('../../docs/swagger/totp-api').default;
1515
const DESCRIPTION = require('../../docs/swagger/shared/descriptions').default;
1616
const { Container } = require('typedi');
1717
const { AccountEventsManager } = require('../account-events');
18-
const { RecoveryPhoneService } = require('@fxa/accounts/recovery-phone');
18+
const {
19+
RecoveryPhoneService,
20+
} = require('../../../../libs/accounts/recovery-phone/src');
1921

2022
const RECOVERY_CODE_SANE_MAX_LENGTH = 20;
2123

0 commit comments

Comments
 (0)