Skip to content

Commit 90067ce

Browse files
committed
refactor: remove logs icon
1 parent 1f81773 commit 90067ce

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

assets/logs.png

533 KB
Loading

src/logs.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Log, LogLevel } from './types'
22
import { Action, ActionPanel, Detail, Icon, List } from '@raycast/api'
33
import { useMemo, useState } from 'react'
44
import { useLogs } from './api'
5-
import { LOG_LEVEL_COLORS, LOG_LEVELS } from './constants'
5+
import { LOG_LEVELS } from './constants'
66
import { capitalize } from './utils'
77

88
export default function Command() {
@@ -22,7 +22,6 @@ export default function Command() {
2222
>
2323
{filteredList.map((log, index) => (
2424
<List.Item
25-
icon={{ source: Icon.Circle, tintColor: LOG_LEVEL_COLORS[log.type] }}
2625
key={index}
2726
title={log.time ? log.time : ''}
2827
subtitle={log.payload}

0 commit comments

Comments
 (0)