drbh
commited on
Commit
·
ec788f0
1
Parent(s):
dc06026
fix: better default write location
Browse files
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 || '
|
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 |
|