From eebb57c10386235ab8c82a78b34cda7196be23e9 Mon Sep 17 00:00:00 2001 From: Lawson Kight Date: Tue, 17 Sep 2024 16:07:23 -0700 Subject: [PATCH] eslint fix --- docs/bridge/docs/rfq/API/sidebar.ts | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/bridge/docs/rfq/API/sidebar.ts b/docs/bridge/docs/rfq/API/sidebar.ts index 3c0e12fc63..51cdd61453 100644 --- a/docs/bridge/docs/rfq/API/sidebar.ts +++ b/docs/bridge/docs/rfq/API/sidebar.ts @@ -1,26 +1,26 @@ -import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; +import type { SidebarsConfig } from '@docusaurus/plugin-content-docs' const sidebar: SidebarsConfig = { apisidebar: [ { - type: "category", - label: "quotes", + type: 'category', + label: 'quotes', items: [ { - type: "doc", - id: "rfq/API/get-quotes", - label: "Get quotes", - className: "api-method get", + type: 'doc', + id: 'rfq/API/get-quotes', + label: 'Get quotes', + className: 'api-method get', }, { - type: "doc", - id: "rfq/API/upsert-quote", - label: "Upsert quote", - className: "api-method put", + type: 'doc', + id: 'rfq/API/upsert-quote', + label: 'Upsert quote', + className: 'api-method put', }, ], }, ], -}; +} -export default sidebar.apisidebar; +export default sidebar.apisidebar