Skip to content

Commit bb0a873

Browse files
committed
fix/lint
1 parent 004d8b2 commit bb0a873

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

frontend/src/hooks/useFolderOperations.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,11 @@ export const useFolderOperations = () => {
7878
useEffect(() => {
7979
if (taggingStatusQuery.isError) {
8080
const errorMessage = taggingStatusQuery.errorMessage || 'Unknown error';
81-
logger.error('Failed to fetch tagging status:', errorMessage, taggingStatusQuery.error);
81+
logger.error(
82+
'Failed to fetch tagging status:',
83+
errorMessage,
84+
taggingStatusQuery.error,
85+
);
8286
}
8387
}, [
8488
taggingStatusQuery.isError,

0 commit comments

Comments
 (0)