ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto

update API URL to atlast.byarielm.fyi

Changed production API URL from atlast.app to atlast.byarielm.fyi in:
- api-client.ts: ATLAST_API_URL constant
- popup.html: footer link

byarielm.fyi 4c9bb601 3a42010c

verified
Changed files
+3 -3
packages
extension
src
+2 -2
packages/extension/src/lib/api-client.ts
··· 2 2 * ATlast API client for extension 3 3 */ 4 4 5 - // TODO: Update this to actual production URL when deploying 5 + // API URL configuration 6 6 const ATLAST_API_URL = import.meta.env?.MODE === 'production' 7 - ? 'https://atlast.app' 7 + ? 'https://atlast.byarielm.fyi' 8 8 : 'http://127.0.0.1:8888'; 9 9 10 10 export interface ExtensionImportRequest {
+1 -1
packages/extension/src/popup/popup.html
··· 67 67 </main> 68 68 69 69 <footer> 70 - <a href="https://atlast.app" target="_blank">atlast.app</a> 70 + <a href="https://atlast.byarielm.fyi" target="_blank">atlast.byarielm.fyi</a> 71 71 </footer> 72 72 </div> 73 73