File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/packages/frontend/project/page/flyouts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,12 @@ export function useStarredFilesManager(project_id: string) {
57
57
} ;
58
58
await api ( "bookmarks/set" , payload ) ;
59
59
} catch ( err ) {
60
- console . error ( "api error" , err ) ;
60
+ console . warn ( `bookmark: warning -- ${ err } ` ) ;
61
61
}
62
62
}
63
63
64
64
// this is called once, when the flyout/tabs component is mounted
65
- // throtteld , to usually take 1 sec from opening the panel to loading the stars
65
+ // throtteled , to usually take 1 sec from opening the panel to loading the stars
66
66
const updateStarred = throttle (
67
67
async ( ) => {
68
68
try {
@@ -105,7 +105,7 @@ export function useStarredFilesManager(project_id: string) {
105
105
console . error ( "flyout/store/starred error: unknown status" , status ) ;
106
106
}
107
107
} catch ( err ) {
108
- console . error ( "api error" , err ) ;
108
+ console . warn ( `bookmark: warning -- ${ err } ` ) ;
109
109
}
110
110
} ,
111
111
1000 ,
You can’t perform that action at this time.
0 commit comments