5
6 // Get new access token
7 const tokenRes = await fetch("https://accounts.spotify.com/api/token", {
8 method: "POST",
9 headers: {
21
22 // Get currently playing song
23 const currentRes = await fetch("https://api.spotify.com/v1/me/player/currently-playing", {
24 headers: {
25 Authorization: `Bearer ${access_token}`,
36
37 // Like the song
38 const likeRes = await fetch(`https://api.spotify.com/v1/me/tracks`, {
39 method: "PUT",
40 headers: {
38Enhanced logging system for better debugging
39Fixed occasional 500 error with the /sessions endpoint
40UI docker image now accepts dynamic API URLs for custom deploys
41Fixes to re-render bugs that were causing some state update delays
42Fixes requests ordering from FE to preload data for a snappier UI
181 });
182
183 console.log(`GitHub API response status: ${response.status}`);
184 console.log(`Raw commit count: ${response.data.length}`);
185
186 return response.data;
187 } catch (error) {
188 console.error("GitHub API Error:", error);
189 throw error;
190 }
38Enhanced logging system for better debugging
39Fixed occasional 500 error with the /sessions endpoint
40UI docker image now accepts dynamic API URLs for custom deploys
41Fixes to re-render bugs that were causing some state update delays
42Fixes requests ordering from FE to preload data for a snappier UI
181 });
182
183 console.log(`GitHub API response status: ${response.status}`);
184 console.log(`Raw commit count: ${response.data.length}`);
185
186 return response.data;
187 } catch (error) {
188 console.error("GitHub API Error:", error);
189 throw error;
190 }
1import { useState, useEffect } from "react";
2
3const USER_ENDPOINT = "/api/user";
4
5export function useUser() {
20 SUM(num_images) as total_images
21 FROM ${USAGE_TABLE}
22 WHERE our_api_token = 1
23 GROUP BY user_id, username
24 ORDER BY total_price DESC
1import { useState, useEffect } from "react";
2
3const PROJECT_ENDPOINT = "/api/project";
4const FILES_ENDPOINT = "/api/project-files";
5
6export function useProject(projectId: string, branchId?: string) {
1import { useState, useEffect } from "react";
2
3const ENDPOINT = "/api/projects-loader";
4
5export function useProjects() {
1import { useState, useEffect } from "react";
2
3const ENDPOINT = "/api/create-project";
4
5export function useCreateProject() {
1import { useState, useEffect } from "react";
2
3const ENDPOINT = "/api/create-branch";
4
5export function useCreateBranch(projectId: string) {
17 project,
18 branchId,
19 // anthropicApiKey,
20 // bearerToken,
21 selectedFiles,
39 status,
40 } = useChat({
41 api: "/api/send-message",
42 body: {
43 project,