Skip to content

Commit

Permalink
change extensions order
Browse files Browse the repository at this point in the history
  • Loading branch information
rphovley committed Oct 27, 2024
1 parent f50c461 commit 22806af
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions packages/app/src/services/extensions.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ export interface DashboardExtension extends Extension {
}

const extensions: (Extension | DashboardExtension)[] = [
{
id: 'HourlyCategoryReport',
name: 'Hourly Category Report',
authorName: 'Danielle Hovley',
authorUrl: 'https://github.com/danzjamz',
description:
'View how your time has been spent for each category over the day. Helps you easily be able to determine which hours in the day you were most productive - or most distracted.',
image:
'https://firebasestorage.googleapis.com/v0/b/codeclimbersio.appspot.com/o/public%2Fhourly-category-extension.png?alt=media',
createdAt: new Date('2024-10-24'),
isPopular: true,
component: HourlyCategoryReport,
},
{
id: 'SqlSandbox',
name: 'SQL Sandbox',
Expand All @@ -49,7 +62,7 @@ const extensions: (Extension | DashboardExtension)[] = [
onAdd()
},
createdAt: new Date('2024-09-16'),
isPopular: true,
isPopular: false,
},
{
id: 'DirectQueryAPI',
Expand All @@ -59,20 +72,7 @@ const extensions: (Extension | DashboardExtension)[] = [
description:
"We've been working on a Direct Query API for providing data for the reports. Try it out and let us know if you have any bugs. This is how the app will get data in the future",
createdAt: new Date('2024-09-17'),
isPopular: true,
},
{
id: 'HourlyCategoryReport',
name: 'Hourly Category Report',
authorName: 'Danielle Hovley',
authorUrl: 'https://github.com/danzjamz',
description:
'View how your time has been spent for each category over the day. Helps you easily be able to determine which hours in the day you were most productive - or most distracted.',
image:
'https://firebasestorage.googleapis.com/v0/b/codeclimbersio.appspot.com/o/public%2Fhourly-category-extension.png?alt=media',
createdAt: new Date('2024-10-24'),
isPopular: false,
component: HourlyCategoryReport,
},
]

Expand Down

0 comments on commit 22806af

Please sign in to comment.