Skip to content

Commit 79e00e8

Browse files
committed
[SIDE-DRAWER-28]: Remove unused code (#1010)
## TL;DR This PR removes files and parameters that are no longer used after the side drawer revamp. ## How to test - [ ] Run code and do a sanity check on the app, there should not be any errors - [ ] Run a build, there should not be any errors
1 parent cf4712a commit 79e00e8

File tree

18 files changed

+0
-108
lines changed

18 files changed

+0
-108
lines changed

packages/backend/src/apps/calculator/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ const app: IApp = {
1212
primaryColor: '000000',
1313
actions,
1414
description: 'Perform calculations on numbers in your data',
15-
substepLabels: {
16-
settingsStepLabel: 'Set up calculator',
17-
},
1815
category: 'data',
1916
}
2017

packages/backend/src/apps/formatter/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ const app: IApp = {
1313
apiBaseUrl: '',
1414
primaryColor: '000000',
1515
actions,
16-
substepLabels: {
17-
settingsStepLabel: 'Set up formatter',
18-
},
1916
category: 'data',
2017
}
2118

packages/backend/src/apps/formsg/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ const app: IApp = {
1717
auth,
1818
triggers,
1919
actions: [],
20-
substepLabels: {
21-
settingsStepLabel: 'Other settings',
22-
},
2320
demoVideoDetails: {
2421
url: 'https://demo.arcade.software/6cWULLTHkTH4XsSB1rs1?embed&show_copy_link=true',
2522
title: 'Setting up FormSG',

packages/backend/src/apps/m365-excel/actions/create-table-row/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ const action: IRawAction = {
4242
name: 'Create table row',
4343
key: 'createTableRow',
4444
description: 'Creates a new row in your Excel table',
45-
settingsStepLabel: 'Set up row to create',
4645
arguments: [
4746
{
4847
key: 'fileId',

packages/backend/src/apps/m365-excel/actions/get-cell-values/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const action: IRawAction = {
1515
name: 'Get cell values',
1616
key: 'getCellValues',
1717
description: 'Gets cell value(s) in your Excel spreadsheet',
18-
settingsStepLabel: 'Set up cell(s) to get',
1918
arguments: [
2019
{
2120
key: 'fileId',

packages/backend/src/apps/m365-excel/actions/get-table-row/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const action: IRawAction = {
1919
name: 'Find table row',
2020
key: 'getTableRow',
2121
description: 'Gets a single row of data from your Excel table',
22-
settingsStepLabel: 'Set up row to get',
2322
arguments: [
2423
{
2524
key: 'fileId',

packages/backend/src/apps/m365-excel/actions/update-table-row/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const action: IRawAction = {
2828
name: 'Update table row',
2929
key: 'updateTableRow',
3030
description: 'Updates a single row of data in your Excel table',
31-
settingsStepLabel: 'Set up row to update',
3231
arguments: [
3332
// We're doing an update based on results of our getTableRow action, so just
3433
// re-use its arguments.

packages/backend/src/apps/m365-excel/actions/write-cell-values/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ const action: IRawAction = {
1414
name: 'Write cell values',
1515
key: 'writeCellValues',
1616
description: "Write values into your Excel worksheet's cells",
17-
settingsStepLabel: 'Set up cell(s) to update',
1817
arguments: [
1918
{
2019
key: 'fileId',

packages/backend/src/apps/postman/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ const app: IApp = {
1313
apiBaseUrl: 'https://api.postman.gov.sg',
1414
primaryColor: '000000',
1515
actions,
16-
substepLabels: {
17-
settingsStepLabel: 'Set up email',
18-
},
1916
demoVideoDetails: {
2017
url: 'https://demo.arcade.software/VppMAbGKfFXFEsKxnKiw?embed&show_copy_link=true',
2118
title: 'Setting up Email by Postman',

packages/backend/src/apps/scheduler/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ const app: IApp = {
1313
apiBaseUrl: '',
1414
primaryColor: '0059F7',
1515
triggers,
16-
substepLabels: {
17-
settingsStepLabel: 'Set up scheduler',
18-
},
1916
}
2017

2118
export default app

0 commit comments

Comments
 (0)