mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-25 14:05:03 +00:00
Fix build errors
This commit is contained in:
@ -9,7 +9,6 @@ import Button from '../buttons/Button';
|
||||
interface TokenProps {
|
||||
_id: string;
|
||||
name: string;
|
||||
environment: string;
|
||||
expiresAt: string;
|
||||
}
|
||||
|
||||
|
@ -121,7 +121,7 @@ export default function PersonalSettings() {
|
||||
</div>
|
||||
<div className="w-48 mt-2">
|
||||
<Button
|
||||
text={t("settings-personal:api-keys.add-new")}
|
||||
text={String(t("settings-personal:api-keys.add-new"))}
|
||||
onButtonPressed={() => {
|
||||
setIsAddApiKeyDialogOpen(true);
|
||||
}}
|
||||
@ -133,7 +133,7 @@ export default function PersonalSettings() {
|
||||
</div>
|
||||
<ApiKeyTable
|
||||
data={apiKeys}
|
||||
setApiKeys={setApiKeys}
|
||||
setApiKeys={setApiKeys as any}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user