@@ -11,7 +11,6 @@ export const fetchNamespaces = async ({ limit, offset, sort, sort_by }) => {
1111 if ( sort_by ) url . searchParams . append ( "sort_by" , sort_by )
1212
1313 const data = await useFetch ( url . href )
14- console . log ( "fetchNamespaces" , data . data . value )
1514 return data
1615 } catch ( error ) {
1716 console . error ( error )
@@ -34,7 +33,6 @@ export const fetchNamespaceByID = async (id) => {
3433 const url = new URL ( `${ useServerURL ( ) } /namespace/${ id } ` )
3534
3635 const data = await useFetch ( encodeURI ( url . href ) )
37- console . log ( "fetchNamespaceByID" , data . data . value )
3836 return data
3937 } catch ( error ) {
4038 console . error ( error )
@@ -60,7 +58,6 @@ export const fetchNamespaceMessagesById = async ({ id, version, limit, offset })
6058 if ( offset ) url . searchParams . append ( "offset" , offset )
6159
6260 const data = await useFetch ( encodeURI ( url . href ) )
63- console . log ( "fetchNamespaceMessagesById" , data . data . value )
6461 return data
6562 } catch ( error ) {
6663 console . error ( error )
@@ -77,7 +74,6 @@ export const fetchNamespaceBlobs = async ({ id, version, limit, offset }) => {
7774 if ( offset ) url . searchParams . append ( "offset" , offset )
7875
7976 const data = await useFetch ( encodeURI ( url . href ) )
80- console . log ( "fetchNamespaceBlobs" , data . data . value )
8177 return data
8278 } catch ( error ) {
8379 console . error ( error )
@@ -91,7 +87,6 @@ export const fetchNamespaceRollups = async ({ id, version, limit }) => {
9187 if ( limit ) url . searchParams . append ( "limit" , limit )
9288
9389 const data = await useFetch ( encodeURI ( url . href ) )
94- console . log ( "fetchNamespaceRollups" , data . data . value )
9590 return data
9691 } catch ( error ) {
9792 console . error ( error )
0 commit comments