Skip to content

Commit b3dd5bc

Browse files
committed
Added "fakeflag" feature flag to fix types
1 parent aab327d commit b3dd5bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/admin-x-activitypub/src/lib/feature-flags.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, {createContext, useContext, useEffect, useState} from 'react';
22
import {useLocation} from '@tryghost/admin-x-framework';
33

44
// Define all available feature flags here
5-
export const FEATURE_FLAGS = [] as const;
5+
export const FEATURE_FLAGS = ['fakeflag'] as const;
66

77
// ---
88
export type FeatureFlag = typeof FEATURE_FLAGS[number];

0 commit comments

Comments
 (0)