Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(platform): Add new variables to a project #593

Merged
merged 13 commits into from
Jan 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions apps/platform/src/app/(main)/project/[project]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
} from '@/components/ui/dialog'
import { Input } from '@/components/ui/input'
import ControllerInstance from '@/lib/controller-instance'
import AddSecretDialog from '@/components/ui/add-secret-dialog'
import {
Select,
SelectContent,
Expand All @@ -31,7 +32,6 @@ import {
SelectValue
} from '@/components/ui/select'
import { Toaster } from '@/components/ui/sonner'
import AddSecretDialog from '@/components/ui/add-secret-dialog'

interface DetailedProjectPageProps {
params: { project: string }
Expand Down Expand Up @@ -342,7 +342,6 @@ function DetailedProjectPage({
{tab === 'variable' && <VariablePage currentProject={currentProject} />}
</div>
<Toaster />
<Toaster />
</main>
)
}
Expand Down
Loading