Skip to content

Commit 647f828

Browse files
committed
Organizes WebhookView into its own folder
Scopes component, styles, and events panel under a dedicated directory. Updates import paths and uses an index entry for cleaner imports. Improves structure and maintainability with no functional changes.
1 parent 9573b3f commit 647f828

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

src/components/WebhookInspector/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import '../WebhookEventsPanel.css';
2+
import '../WebhookView/WebhookEventsPanel.css';
33
import './WebhookInspector.css';
44
import MeasurementTilesView from '../MeasurementTilesView';
55
import CourseInfoBanner from '../CourseInfoBanner';
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import React from 'react';
22
import { useQuery, useMutation } from 'urql';
3-
import { GET_USER_PROPERTIES_QUERY, APP_SCRIPT_APPLICATION, SET_USER_PROPERTIES_MUTATION, SetUserPropertiesVariables, SetUserPropertiesData } from '../graphql/userProperties';
4-
import WebhookInspector from './WebhookInspector';
5-
import './WebhookView.css';
3+
import { GET_USER_PROPERTIES_QUERY, APP_SCRIPT_APPLICATION, SET_USER_PROPERTIES_MUTATION, SetUserPropertiesVariables, SetUserPropertiesData } from '../../graphql/userProperties';
4+
import WebhookInspector from '../WebhookInspector';
65
import './WebhookView.css';
76

87
interface WebhookViewProps {

0 commit comments

Comments
 (0)