Skip to content

Commit

Permalink
update intellij version
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Jun 23, 2024
1 parent 8f07524 commit 09369e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/intellij/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.continuedev.continueintellijextension
pluginName = continue-intellij-extension
pluginRepositoryUrl = https://github.com/continuedev/continue
# SemVer format -> https://semver.org
pluginVersion = 0.0.50
pluginVersion = 0.0.51

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 223
Expand Down
6 changes: 5 additions & 1 deletion gui/src/pages/onboarding/onboarding.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useContext, useState } from "react";
import { useContext, useEffect, useState } from "react";
import { useNavigate } from "react-router-dom";
import { greenButtonColor } from "../../components";
import { ftl } from "../../components/dialogs/FTCDialog";
Expand All @@ -17,6 +17,10 @@ function Onboarding() {

const [selected, setSelected] = useState(-1);

useEffect(() => {
setLocalStorage("onboardingComplete", true);
}, []);

return (
<div className="p-2 max-w-96 mt-16 mx-auto">
{getLocalStorage("ftc") > ftl() ? (
Expand Down

0 comments on commit 09369e2

Please sign in to comment.