Skip to content

Commit

Permalink
fix more event names
Browse files Browse the repository at this point in the history
  • Loading branch information
arielweinberger committed Aug 6, 2023
1 parent 74a3696 commit 7e27d27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const EnvironmentsPage = () => {

const onCreateEnvironmentModalOpen = () => {
setIsCreateEnvironmentModalOpen(true);
trackEvent("environment_create_modal_open");
trackEvent("environment_create_modal_opened");
};

const onDeleteEnvironmentModalOpen = (environment: Environment) => () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/console/src/app/pages/requests/RequestsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const RequestsPage = () => {

const handleShowDetails = (record: RequestReportItem) => () => {
setCurrentReportId(record.key);
trackEvent("request_details_view", {
trackEvent("request_details_viewed", {
request_id: record.key,
});
};
Expand Down

0 comments on commit 7e27d27

Please sign in to comment.