mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 18:19:13 +08:00
fix(BUG): Allow users to enter the application if no sample data is provided (#478). (#538)
This commit is contained in:
parent
ff2e9ae084
commit
f449775cd6
@ -31,10 +31,7 @@ const Metrics = (): JSX.Element => {
|
||||
history.push(to);
|
||||
};
|
||||
|
||||
if (
|
||||
(services.length === 0 && loading === false && !skipOnboarding) ||
|
||||
(loading == false && error === true)
|
||||
) {
|
||||
if (services.length === 0 && loading === false && !skipOnboarding && error === true) {
|
||||
return <SkipBoardModal onContinueClick={onContinueClick} />;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user