diff --git a/docs/getting-started/nixpkg.mdx b/docs/getting-started/nixpkg.mdx
index 8ea8f3c8..812de8b1 100644
--- a/docs/getting-started/nixpkg.mdx
+++ b/docs/getting-started/nixpkg.mdx
@@ -4,7 +4,7 @@ description: Install Seerr using Nix
sidebar_position: 3
---
-import { JellyseerrVersion, NixpkgVersion } from '@site/src/components/JellyseerrVersion';
+import { SeerrVersion, NixpkgVersion } from '@site/src/components/SeerrVersion';
import Admonition from '@theme/Admonition';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
@@ -15,10 +15,10 @@ This method is not recommended for most users. It is intended for advanced users
:::
export const VersionMismatchWarning = () => {
- let jellyseerrVersion = null;
+ let seerrVersion = null;
let nixpkgVersions = null;
try {
- jellyseerrVersion = JellyseerrVersion();
+ seerrVersion = SeerrVersion();
nixpkgVersions = NixpkgVersion();
} catch (err) {
return (
@@ -36,8 +36,8 @@ export const VersionMismatchWarning = () => {
);
}
- const isUnstableUpToDate = jellyseerrVersion === nixpkgVersions.unstable;
- const isStableUpToDate = jellyseerrVersion === nixpkgVersions.stable;
+ const isUnstableUpToDate = seerrVersion === nixpkgVersions.unstable;
+ const isStableUpToDate = seerrVersion === nixpkgVersions.stable;
return (
<>
@@ -47,7 +47,7 @@ export const VersionMismatchWarning = () => {
upstream Jellyseerr Nix Package (v{nixpkgVersions.stable})
{' '}
- is not up-to-date. If you want to use Jellyseerr v{jellyseerrVersion},{' '}
+ is not up-to-date. If you want to use Jellyseerr v{seerrVersion},{' '}
{isUnstableUpToDate ? (
<>
consider using the{' '}