Skip to content

Commit bce86e8

Browse files
committed
fix linting
1 parent ea5d0b8 commit bce86e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/remix-ui/statusbar/src/lib/components/aiStatus.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface AIStatusProps {
1414
export default function AIStatus(props: AIStatusProps) {
1515
const [copilotActive, setCopilotActive] = useState(false)
1616
const appContext = useContext(AppContext)
17-
17+
1818
useEffect(() => {
1919
const run = async () => {
2020
const aiActivate = await props.plugin.call('settings', 'get', 'settings/copilot/suggest/activate')

libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export const TabsUI = (props: TabsUIProps) => {
8686
})
8787
}
8888
}, [tabsState.selectedIndex])
89-
// Toggle the copilot in editor when clicked to update in status bar
89+
// Toggle the copilot in editor when clicked to update in status bar
9090
useEffect(() => {
9191
const run = async () => {
9292
props.plugin.on('settings', 'copilotChoiceUpdated', async (isChecked) => {

0 commit comments

Comments
 (0)