Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
BroKun committed Dec 1, 2023
1 parent 881a8bc commit 47e9b5e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/libro-jupyter/src/file/file-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class JupyterFileService extends FileService {

async delete(
resource: URI,
options?: ResolveFileOptions | undefined,
_options?: ResolveFileOptions | undefined,
): Promise<FileStatWithMetadata> {
await this.contentsManager.delete(resource.path.toString());
return this.resolve(resource);
Expand Down
4 changes: 4 additions & 0 deletions packages/libro-lab/src/layout/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
{layoutService.isAreaVisible(LibroLabLayoutSlots.navigator) && (
<SplitPanel.Pane
id="libro-lab-content-layout-left"
className="libro-lab-content-layout-left"
defaultSize={300}
minResize={160}
>
Expand All @@ -24,6 +25,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
)}
<SplitPanel.Pane
id="libro-lab-content-layout-main-container"
className="libro-lab-content-layout-main-container"
flex={1}
minResize={200}
>
Expand All @@ -34,6 +36,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
{layoutService.isAreaVisible(LibroLabLayoutSlots.content) && (
<SplitPanel.Pane
id="libro-lab-content-layout-main"
className="libro-lab-content-layout-main"
flex={2}
flexGrow={1}
minResize={200}
Expand All @@ -44,6 +47,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
{layoutService.isAreaVisible(LibroLabLayoutSlots.contentBottom) && (
<SplitPanel.Pane
id="libro-lab-content-layout-bottom"
className="libro-lab-content-layout-bottom"
flex={1}
defaultSize={200}
>
Expand Down
1 change: 0 additions & 1 deletion packages/libro-lab/src/toc/libro-toc-icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export interface IProps {
height?: string;
}
export function TocIcon(props: IProps) {
const { className = '' } = props;
return (
<svg
width="12px"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"noFallthroughCasesInSwitch": false,
// "noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": true,
"noImplicitOverride": true,
"skipLibCheck": true,
Expand Down

0 comments on commit 47e9b5e

Please sign in to comment.