Skip to content

Commit

Permalink
fix: fix rebase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
EiffelFly committed Feb 15, 2024
1 parent ecdf3e5 commit 15fb9d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@instill-ai/toolkit",
"version": "0.80.4-rc.12",
"version": "0.80.4-rc.13",
"description": "Instill AI's frontend toolkit",
"repository": "https://github.com/instill-ai/design-system.git",
"bugs": "https://github.com/instill-ai/design-system/issues",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ const selector = (store: InstillStore) => ({

export const ViewPipeline = () => {
const { accessToken, enabledQuery } = useInstillStore(useShallow(selector));
const [currentVersion, setCurrentVersion] = React.useState<string>("latest");

const router = useRouter();

function handleVersion(version: string) {
setCurrentVersion(version);
}

const me = useAuthenticatedUser({
enabled: enabledQuery,
accessToken,
Expand Down

0 comments on commit 15fb9d7

Please sign in to comment.