File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- VITE_USE_MOCK_SERVER = false
1+ VITE_USE_MOCK_SERVER = true
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ export class ObjectStackDataSource implements DataSource {
5050
5151 async find ( objectName : string , options ?: any ) : Promise < QueryResult < any > > {
5252 const result : any = await this . client . data . find ( objectName , options || { } ) ;
53+ console . log ( 'DEBUG: find result' , result ) ;
5354
5455 // Handle array response
5556 if ( Array . isArray ( result ) ) {
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export async function startMockServer() {
5252 // MSW Plugin (intercepts network requests)
5353 // Disable auto-start to manually control worker registration with correct path
5454 const mswPlugin = new MSWPlugin ( {
55- enableBrowser : false ,
55+ enableBrowser : true ,
5656 baseUrl : '/api/v1' ,
5757 logRequests : true
5858 } ) ;
You can’t perform that action at this time.
0 commit comments