Skip to content

Commit bcd3fd4

Browse files
committed
[chore] formating fix
1 parent 15de5dc commit bcd3fd4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/Shell/Shell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ const InlineHint = ({ part }: { part: SyntaxPart }) => (
1616
</span>
1717
);
1818

19-
2019
export default function Shell({ decreaseCommandsLeft }: ShellProps) {
2120
const {
2221
handleInputChange,

src/components/Shell/__tests__/index.test.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ describe('Shell Component', () => {
124124
expect(inlineHintChild[0]).toHaveTextContent('Key');
125125
expect(inlineHintChild[1]).toHaveTextContent('Value');
126126
expect(inlineHintChild[2]).toHaveTextContent('[NX | XX]');
127-
expect(inlineHintChild[3]).toHaveTextContent('[EX seconds | PX milliseconds | EXAT unix-time-seconds | PXAT unix-time-milliseconds | KEEPTTL]');
127+
expect(inlineHintChild[3]).toHaveTextContent(
128+
'[EX seconds | PX milliseconds | EXAT unix-time-seconds | PXAT unix-time-milliseconds | KEEPTTL]',
129+
);
128130
});
129131

130132
it('should show syntax usage hint for GET', async () => {

0 commit comments

Comments
 (0)