Skip to content

Commit d919638

Browse files
authored
feat: remove feature flag from working alerts and add eventing for successful exports (#4168)
1 parent f7d9748 commit d919638

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/flows/pipes/Notification/endpoints/AWS/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export default register => {
1616
calcSignature: '',
1717
email: '',
1818
},
19-
featureFlag: 'notebooksNewEndpoints',
2019
component: View,
2120
readOnlyComponent: ReadOnly,
2221
generateImports: () =>

src/flows/pipes/Notification/endpoints/Mailgun/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export default register => {
1111
apiKey: '',
1212
email: '',
1313
},
14-
featureFlag: 'notebooksNewEndpoints',
1514
component: View,
1615
readOnlyComponent: ReadOnly,
1716
generateImports: () =>

src/flows/pipes/Schedule/ExportTaskButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const ExportTaskButton: FC<Props> = ({
5757
const onClick = async () => {
5858
const query = generate ? generate() : data.query
5959

60-
event('Export Task Modal Skipped', {from: type})
60+
event('Export Task Modal Skipped', {from: type, type: data.endpoint})
6161
let taskid
6262

6363
// we can soft delete the previously connected task by marking the old one inactive

0 commit comments

Comments
 (0)