Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lawsonkight committed Sep 17, 2024
1 parent 244e77f commit eebb57c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions docs/bridge/docs/rfq/API/sidebar.ts
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit eebb57c

Please sign in to comment.