File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import {
2020
2121import { useEffect , useState } from "react" ;
2222import { usePostHog } from "@posthog/react" ;
23- import AppConfig from "@/services/configservice" ;
2423
2524export function ExamplesDropdown ( {
2625 disabled,
@@ -33,7 +32,6 @@ export function ExamplesDropdown({
3332 const [ promptOpen , setPromptOpen ] = useState ( false ) ;
3433 const [ selectedExample , setSelectedExample ] = useState < Example > ( ) ;
3534 const posthog = usePostHog ( ) ;
36- const config = AppConfig ( ) ;
3735
3836 useEffect ( ( ) => {
3937 const fetchExamples = async ( ) => {
@@ -87,7 +85,7 @@ export function ExamplesDropdown({
8785 < AlertDialogAction
8886 onClick = { ( ) => {
8987 if ( selectedExample ) {
90- posthog . capture ( "schema_selected " , {
88+ posthog . capture ( "playground_schema_selected " , {
9189 schema_id : selectedExample . id ,
9290 schema_title : selectedExample . title ,
9391 } ) ;
You can’t perform that action at this time.
0 commit comments