Skip to content

Commit

Permalink
task(auth): Fix prod build error
Browse files Browse the repository at this point in the history
Because:
- Evidently we can't reference `@fxa/` here...

This Commit:
- Uses the relative path
  • Loading branch information
dschom authored and xlisachan committed Jan 15, 2025
1 parent 5c89a0e commit 10b94c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/fxa-auth-server/lib/routes/totp.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ const TOTP_DOCS = require('../../docs/swagger/totp-api').default;
const DESCRIPTION = require('../../docs/swagger/shared/descriptions').default;
const { Container } = require('typedi');
const { AccountEventsManager } = require('../account-events');
const { RecoveryPhoneService } = require('@fxa/accounts/recovery-phone');
const {
RecoveryPhoneService,
} = require('../../../../libs/accounts/recovery-phone/src');

const RECOVERY_CODE_SANE_MAX_LENGTH = 20;

Expand Down

0 comments on commit 10b94c4

Please sign in to comment.