drbh commited on
Commit
ec788f0
·
1 Parent(s): dc06026

fix: better default write location

Browse files
Files changed (1) hide show
  1. app/lib/account-linking.server.ts +1 -1
app/lib/account-linking.server.ts CHANGED
@@ -22,7 +22,7 @@ export class AccountLinkingService {
22
  private filePath: string;
23
 
24
  constructor() {
25
- this.filePath = process.env.ACCOUNT_LINKS_FILE || './data/account-links.json';
26
  this.ensureFileExists();
27
  }
28
 
 
22
  private filePath: string;
23
 
24
  constructor() {
25
+ this.filePath = process.env.ACCOUNT_LINKS_FILE || '/tmp/account-links.json';
26
  this.ensureFileExists();
27
  }
28