Skip to content

Commit 6b6413a

Browse files
committed
Small tweaks
1 parent 17744ef commit 6b6413a

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

webviews/dashboardView/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function Dashboard() {
3939
const [refreshing, setRefreshing] = useState(false);
4040
const [issueSort, setIssueSort] = useState<'date-oldest' | 'date-newest'>('date-oldest');
4141
const [hoveredIssue, setHoveredIssue] = useState<IssueData | null>(null);
42-
const [globalFilter, setGlobalFilter] = useState<FilterState>({ showTasks: true, showProjects: true });
42+
const [globalFilter, setGlobalFilter] = useState<FilterState>({ showTasks: true, showProjects: true });
4343

4444
useEffect(() => {
4545
// Listen for messages from the extension

webviews/dashboardView/components/ChatInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ function setupMonaco() {
6767
rules: [
6868
{ token: 'copilot-keyword', foreground: '569cd6', fontStyle: 'bold' },
6969
{ token: 'issue-reference', foreground: 'ffd700' },
70-
{ token: 'text', foreground: 'cccccc' }
7170
],
7271
colors: {}
7372
});

0 commit comments

Comments
 (0)