@@ -121,8 +121,8 @@ const launchdarkly = new LaunchDarkly(components.launchdarkly);
121121export const =  query ({
122122  args: {},
123123  handler : async  ({ ctx  }) =>  {
124-     const launchdarkly  =  ld .sdk (ctx );
125-     const =  await  launchdarkly .boolVariation (
124+     const ld  =  launchdarkly .sdk (ctx );
125+     const =  await  ld .boolVariation (
126126      " my-flag" 
127127      { key: " myUser" 
128128      false 
@@ -204,20 +204,20 @@ Once configured, you may initialize `LaunchDarkly` with the appropriate componen
204204``` typescript 
205205import  { LaunchDarkly  } from  " @convex-dev/launchdarkly" 
206206
207- const ldFirst  =  new  LaunchDarkly (components .first , {
207+ const launchDarklyFirst  =  new  LaunchDarkly (components .first , {
208208  LAUNCHDARKLY_SDK_KEY: process .env .LAUNCHDARKLY_SDK_KEY_FIRST ! ,
209209});
210210
211- const ldSecond  =  new  LaunchDarkly (components .second , {
211+ const launchDarklySecond  =  new  LaunchDarkly (components .second , {
212212  LAUNCHDARKLY_SDK_KEY: process .env .LAUNCHDARKLY_SDK_KEY_SECOND ! ,
213213});
214214
215215export const =  query ({
216216  args: {},
217217  handler : async  ({ ctx  }) =>  {
218-     const launchdarklyFirst  =  ldFirst .sdk (ctx );
218+     const ldFirst  =  launchdarklyFirst .sdk (ctx );
219219
220-     const launchdarklySecond  =  ldSecond .sdk (ctx );
220+     const ldSecond  =  launchDarklySecond .sdk (ctx );
221221
222222    ... 
223223  },
0 commit comments