nsarrazin HF Staff commited on
Commit
3cd67f6
·
unverified ·
1 Parent(s): 152a297

feat(tools): make tools featured by default during early access

Browse files
src/routes/tools/new/+page.server.ts CHANGED
@@ -66,7 +66,9 @@ export const actions = {
66
  updatedAt: new Date(),
67
  last24HoursUseCount: 0,
68
  useCount: 0,
69
- featured: false,
 
 
70
  searchTokens: generateSearchTokens(parse.data.displayName),
71
  });
72
 
 
66
  updatedAt: new Date(),
67
  last24HoursUseCount: 0,
68
  useCount: 0,
69
+ // XXX: feature_flag_tools
70
+ // since this is scoped to internal team members only, we can assume that they should all be public
71
+ featured: true,
72
  searchTokens: generateSearchTokens(parse.data.displayName),
73
  });
74